/* src/pages/LandingPage.css */
.landing {
  --navy: #2d3748;
  --navy-dark: #1e2432;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  min-height: 100vh;
  background: var(--white);
  color: var(--gray-800);
  overflow-x: hidden;
}
.landing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.landing-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}
.landing-header .landing-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.header-brand-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.header-brand-btn:hover .header-name-full {
  color: var(--accent-gold, #d4af37);
}
.hero-title-wrap {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
.hero-square-logo {
  width: 210px;
  height: 210px;
  border-radius: 16px;
  flex-shrink: 0;
  background: #111;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
@media (max-width: 768px) {
  .hero-square-logo {
    width: 90px;
    height: 90px;
  }
  .hero-title-wrap {
    gap: 12px;
  }
}
.header-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  flex-shrink: 0;
  background: #111;
  box-shadow: 0 0 0 2px rgba(45, 55, 72, 0.12);
}
.header-name-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.header-name-full {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  letter-spacing: -0.2px;
}
.header-name-short {
  display: none;
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 1px;
}
.header-name-tag {
  font-size: 10px;
  color: var(--gray-400);
  font-weight: 500;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.header-nav a:hover {
  color: var(--navy);
}
.btn-outline-light {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  min-height: 44px;
}
.btn-outline-light:hover {
  border-color: var(--navy);
  background: var(--gray-50);
}
.btn-cta {
  background: var(--navy);
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}
.btn-cta:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(45, 55, 72, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}
.btn-ghost:hover {
  background: var(--gray-100);
}
.btn-ghost-dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid #d1d5db;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}
.btn-ghost-dark:hover {
  background: var(--gray-100);
  border-color: var(--navy);
}
.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
}
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mobile-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-open .mobile-nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-open .mobile-nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-open .mobile-nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.hero {
  padding: 80px 0 60px;
  background:
    linear-gradient(
      180deg,
      var(--white) 0%,
      var(--gray-50) 100%);
}
.hero .landing-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 24px;
}
.hero-highlight {
  color: var(--navy);
}
.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-600);
}
.trust-item svg {
  color: #48bb78;
  flex-shrink: 0;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.hero-card {
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.hero-card-header {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: var(--navy);
}
.hero-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.hero-card-dot.green {
  background: #48bb78;
}
.hero-card-dot.yellow {
  background: #ed8936;
}
.hero-card-dot.red {
  background: #e53e3e;
}
.hero-card-body {
  padding: 24px;
}
.mock-session {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}
.mock-avatar {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(45, 55, 72, 0.08);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mock-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.mock-label {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 2px;
}
.mock-role {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
}
.mock-feedback {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.feedback-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 8px;
}
.feedback-item.positive {
  background: rgba(72, 187, 120, 0.08);
  color: #2f855a;
}
.feedback-item.improve {
  background: rgba(237, 137, 54, 0.08);
  color: #c05621;
}
.mock-badge {
  display: inline-flex;
  padding: 6px 14px;
  background: var(--navy);
  color: #ffffff;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.hero-intro {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: 0.1px;
}
.pricing-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.pricing-panel {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px 10px;
  min-width: 0;
}
.panel-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  margin-bottom: 8px;
  white-space: nowrap;
}
.panel-transcript {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.transcript-line {
  display: flex;
  gap: 6px;
  font-size: 11px;
  line-height: 1.4;
  color: var(--gray-700);
}
.transcript-line .ts {
  color: #7c3aed;
  font-weight: 600;
  flex-shrink: 0;
}
.mini-feedback {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mf-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  padding: 4px 7px;
  border-radius: 6px;
}
.mf-item.positive {
  background: rgba(72, 187, 120, 0.1);
  color: #2f855a;
}
.mf-item.improve {
  background: rgba(237, 137, 54, 0.1);
  color: #c05621;
}
.pricing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--navy);
  border-radius: 12px;
  color: #fff;
}
.pricing-footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.pricing-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pricing-pkg-title {
  font-size: 14px;
  font-weight: 700;
}
.pricing-pkg-desc {
  font-size: 11px;
  opacity: 0.8;
  margin-top: 2px;
}
.pricing-pkg-tag {
  font-size: 10px;
  opacity: 0.6;
  margin-top: 1px;
}
.pricing-footer-right {
  text-align: right;
  flex-shrink: 0;
}
.pricing-amount {
  display: flex;
  align-items: flex-start;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}
.pricing-amount svg {
  margin-top: 4px;
}
.pricing-once {
  font-size: 11px;
  opacity: 0.7;
  margin-top: 2px;
}
.hero-card-wide {
  max-width: 600px !important;
}
.mock-ui-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 1.4fr;
  gap: 10px;
  margin-bottom: 14px;
}
.mock-video-col,
.mock-transcript-col,
.mock-feedback-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-col-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--navy);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  white-space: nowrap;
  width: fit-content;
}
.mock-video-frame {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.15);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mock-video-bg {
  flex: 1;
  background: #1e2432;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  overflow: hidden;
}
.mock-video-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mock-vc-controls {
  display: flex;
  align-items: center;
  gap: 3px;
  background: #1e2432;
  padding: 5px 6px;
  flex-wrap: nowrap;
  overflow: hidden;
}
.vc-btn-sm {
  font-size: 9px;
  color: #cbd5e0;
  padding: 2px 3px;
  border-radius: 3px;
  cursor: default;
  white-space: nowrap;
  flex-shrink: 0;
}
.vc-share-sm {
  background: #2d6a4f;
  color: #fff;
  padding: 2px 5px;
}
.vc-rec-sm {
  color: #e53e3e;
}
.vc-btn-end-sm {
  background: #e53e3e;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: auto;
  flex-shrink: 0;
}
.mock-ts-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mock-ts-line {
  display: flex;
  gap: 5px;
  font-size: 10.5px;
  line-height: 1.4;
  color: var(--gray-700);
}
.mock-ts {
  color: #7c3aed;
  font-weight: 700;
  flex-shrink: 0;
}
.mock-fb-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mock-fb-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 10.5px;
}
.mock-fb-positive {
  background: #dcfce7;
  color: #166534;
}
.mock-fb-improve {
  background: #ffedd5;
  color: #9a3412;
}
.mock-fb-suggestion {
  background: #dbeafe;
  color: #1e40af;
}
.mock-fb-icon {
  flex-shrink: 0;
  margin-top: 1px;
}
.mock-fb-emoji {
  font-size: 13px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 1px;
}
.mock-fb-title {
  font-weight: 700;
  margin-bottom: 1px;
}
.mock-fb-sub {
  font-size: 9.5px;
  opacity: 0.8;
  line-height: 1.3;
}
.step-card-clickable {
  cursor: pointer;
}
.step-card-clickable:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: var(--navy);
}
.step-see-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.step-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.step-modal {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  max-height: 90vh;
  overflow-y: auto;
}
.step-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray-700);
  transition: background 0.2s;
}
.step-modal-close:hover {
  background: var(--gray-200);
}
.step-preview-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.step-preview-content > p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
}
.step-preview-icon {
  width: 64px;
  height: 64px;
  background: rgba(45, 55, 72, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 16px;
}
.step-preview-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}
.step-preview-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
}
.step-preview-list li svg {
  color: #48bb78;
  flex-shrink: 0;
}
.step-preview-zoom {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.zoom-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  padding: 10px 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}
.zoom-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.zoom-dot.red {
  background: #e53e3e;
}
.zoom-dot.yellow {
  background: #ed8936;
}
.zoom-dot.green {
  background: #48bb78;
}
.zoom-title {
  margin-left: 4px;
  opacity: 0.8;
}
.zoom-body {
  background: #1a1a2e;
  padding: 16px;
}
.zoom-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.zoom-participant {
  background: #2d3748;
  border-radius: 10px;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.zoom-participant.you-view {
  border: 2px solid #48bb78;
}
.zoom-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.zoom-avatar.self {
  background: rgba(72, 187, 120, 0.2);
}
.zoom-participant span {
  font-size: 12px;
  color: #e2e8f0;
  font-weight: 500;
}
.zoom-controls {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.zoom-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 6px;
}
.zoom-btn.active-rec {
  background: rgba(72, 187, 120, 0.2);
  color: #68d391;
}
.zoom-btn.end {
  background: rgba(229, 62, 62, 0.8);
}
.feedback-preview-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.fp-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
}
.fp-item.positive {
  background: rgba(72, 187, 120, 0.08);
  color: #2f855a;
}
.fp-item.improve {
  background: rgba(237, 137, 54, 0.08);
  color: #c05621;
}
.fp-item.suggestion {
  background: rgba(99, 102, 241, 0.08);
  color: #4338ca;
}
.fp-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.fp-item strong {
  font-weight: 600;
}
.fp-item span {
  font-size: 13px;
  opacity: 0.8;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 18px;
  color: var(--gray-600);
}
.how-it-works {
  padding: 80px 0;
  background: var(--white);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(45, 55, 72, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.step-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--gray-900);
}
.step-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-600);
}
.features-section {
  padding: 80px 0;
  background: var(--gray-50);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 32px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.feature-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(45, 55, 72, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--gray-900);
}
.feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-600);
}
.interviewer-cta {
  padding: 80px 0;
  background: var(--white);
}
.cta-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 56px;
  color: var(--gray-800);
}
.cta-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gray-900);
}
.cta-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 24px;
}
.cta-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.cta-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-700);
}
.cta-benefits li svg {
  color: var(--navy);
  flex-shrink: 0;
}
.cta-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-stat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.cta-stat-icon {
  margin-bottom: 8px;
  color: var(--navy);
}
.cta-stat-value {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--gray-900);
}
.cta-stat-label {
  font-size: 13px;
  color: var(--gray-600);
}
.final-cta {
  padding: 80px 0;
  background: var(--gray-50);
  text-align: center;
  border-top: 1px solid var(--gray-200);
}
.final-cta h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gray-900);
}
.final-cta p {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 36px;
}
.final-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.landing-footer {
  padding: 40px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--navy);
}
.footer-logo {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #111;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 14px;
  color: var(--gray-600);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--navy);
}
.footer-copy {
  font-size: 13px;
  color: var(--gray-400);
  text-align: center;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-legal a {
  font-size: 12px;
  color: var(--gray-400);
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: var(--navy);
}
.footer-legal-sep {
  font-size: 12px;
  color: var(--gray-400);
}
@media (max-width: 1024px) {
  .landing-container {
    padding: 0 20px;
  }
  .hero .landing-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-visual {
    order: -1;
    justify-content: center;
  }
  .hero-title {
    font-size: 42px;
  }
  .hero-subtitle {
    max-width: 100%;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .hero-card {
    max-width: 540px;
  }
  .hero-card-wide {
    max-width: 580px !important;
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-card {
    grid-template-columns: 1fr;
    padding: 40px;
    gap: 32px;
  }
  .cta-visual {
    flex-direction: row;
  }
  .cta-stat-card {
    flex: 1;
  }
  .section-header {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .landing-container {
    padding: 0 16px;
  }
  .header-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    gap: 4px;
    z-index: 99;
  }
  .nav-open .header-nav {
    display: flex;
  }
  .header-nav a {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 15px;
  }
  .header-nav a:hover {
    background: var(--gray-100);
  }
  .header-nav .btn-outline-light,
  .header-nav .btn-cta {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }
  .mobile-nav-toggle {
    display: flex;
  }
  .header-name-full {
    font-size: 14px;
    letter-spacing: -0.1px;
  }
  .hero {
    padding: 48px 0 40px;
  }
  .hero-title {
    font-size: 34px;
  }
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 28px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-actions .btn-cta,
  .hero-actions .btn-ghost,
  .hero-actions .btn-ghost-dark {
    justify-content: center;
    width: 100%;
  }
  .hero-trust {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .hero-card {
    max-width: 100%;
  }
  .how-it-works {
    padding: 60px 0;
  }
  .features-section {
    padding: 60px 0;
  }
  .interviewer-cta {
    padding: 60px 0;
  }
  .final-cta {
    padding: 60px 0;
  }
  .section-header {
    margin-bottom: 32px;
  }
  .section-header h2 {
    font-size: 28px;
  }
  .section-header p {
    font-size: 16px;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .mock-ui-grid {
    grid-template-columns: 1fr;
  }
  .mock-video-bg {
    min-height: 160px;
  }
  .step-card {
    padding: 36px 24px;
  }
  .feature-card {
    padding: 24px;
  }
  .social-proof {
    padding: 36px 0;
  }
  .proof-stats {
    flex-direction: column;
    gap: 24px;
  }
  .proof-divider {
    width: 48px;
    height: 1px;
  }
  .proof-number {
    font-size: 30px;
  }
  .cta-card {
    padding: 32px 24px;
  }
  .cta-content h2 {
    font-size: 26px;
  }
  .cta-visual {
    flex-direction: column;
  }
  .final-cta h2 {
    font-size: 28px;
  }
  .final-cta p {
    font-size: 16px;
    margin-bottom: 28px;
  }
  .final-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .final-actions .btn-cta,
  .final-actions .btn-ghost-dark {
    justify-content: center;
  }
  .footer-links {
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .landing-container {
    padding: 0 14px;
  }
  .landing-header .landing-container {
    height: 64px;
  }
  .header-nav {
    top: 64px;
  }
  .header-logo {
    width: 34px;
    height: 34px;
  }
  .header-name-full {
    font-size: 13px;
  }
  .hero {
    padding: 36px 0 32px;
  }
  .hero-title {
    font-size: 28px;
    line-height: 1.2;
  }
  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .hero-card-body {
    padding: 16px;
  }
  .mock-session {
    gap: 12px;
  }
  .mock-avatar {
    width: 44px;
    height: 44px;
  }
  .mock-role {
    font-size: 14px;
  }
  .btn-lg {
    padding: 13px 24px;
    font-size: 15px;
  }
  .section-header h2 {
    font-size: 24px;
  }
  .section-header p {
    font-size: 15px;
  }
  .step-card {
    padding: 32px 20px;
  }
  .step-card h3 {
    font-size: 18px;
  }
  .step-icon {
    width: 56px;
    height: 56px;
  }
  .feature-card {
    padding: 20px;
  }
  .feature-card h3 {
    font-size: 16px;
  }
  .cta-card {
    padding: 24px 16px;
    border-radius: 16px;
  }
  .cta-content h2 {
    font-size: 22px;
  }
  .cta-content p {
    font-size: 15px;
  }
  .cta-stat-value {
    font-size: 28px;
  }
  .final-cta h2 {
    font-size: 24px;
  }
  .final-cta p {
    font-size: 15px;
  }
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .footer-links a {
    font-size: 15px;
    padding: 4px 0;
  }
}
@media (max-width: 360px) {
  .landing-container {
    padding: 0 12px;
  }
  .header-name-full {
    display: none;
  }
  .header-name-short {
    display: block;
  }
  .hero-title {
    font-size: 24px;
  }
  .hero-subtitle {
    font-size: 14px;
  }
  .btn-cta,
  .btn-ghost,
  .btn-ghost-dark {
    padding: 11px 20px;
    font-size: 14px;
  }
  .btn-lg {
    padding: 12px 20px;
    font-size: 14px;
  }
  .proof-number {
    font-size: 26px;
  }
  .proof-label {
    font-size: 13px;
  }
  .section-header h2 {
    font-size: 22px;
  }
  .section-header p {
    font-size: 14px;
  }
  .step-card h3 {
    font-size: 17px;
  }
  .step-card p {
    font-size: 14px;
  }
  .feature-card h3 {
    font-size: 15px;
  }
  .feature-card p {
    font-size: 14px;
  }
  .cta-content h2 {
    font-size: 20px;
  }
  .cta-benefits li {
    font-size: 14px;
  }
}

/* src/pages/auth/auth.css */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      135deg,
      #f9fafb 0%,
      #f3f4f6 50%,
      #e5e7eb 100%);
  padding: 20px;
  overflow-x: hidden;
}
.auth-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
  width: 100%;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
  border: 1px solid #e5e7eb;
}
.auth-left {
  background:
    linear-gradient(
      135deg,
      var(--primary-dark) 0%,
      var(--primary-navy) 100%);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}
.auth-brand {
  margin-bottom: 48px;
}
.auth-logo {
  width: 100px;
  height: 100px;
  margin-bottom: 24px;
  border-radius: 50%;
}
.auth-brand h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}
.auth-brand p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.6;
}
.auth-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
}
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}
.auth-right {
  padding: 48px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  gap: 0;
}
.auth-card {
  width: 100%;
  max-width: 400px;
}
.auth-mobile-brand {
  display: none;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 400px;
  padding: 20px 24px;
  background:
    linear-gradient(
      135deg,
      var(--primary-dark) 0%,
      var(--primary-navy) 100%);
  border-radius: 16px;
  margin-bottom: 24px;
}
.auth-mobile-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.auth-mobile-brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.auth-mobile-name {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  white-space: normal;
}
.auth-mobile-tagline {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  white-space: normal;
}
.auth-header {
  margin-bottom: 28px;
}
.auth-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.auth-header p {
  color: var(--text-muted);
  font-size: 15px;
}
.auth-success {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.auth-error {
  background: rgba(245, 101, 101, 0.1);
  color: var(--danger);
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  border: 1px solid rgba(245, 101, 101, 0.2);
}
.auth-form {
  margin-bottom: 24px;
}
.password-input {
  position: relative;
}
.password-input .form-input {
  padding-right: 52px;
}
.password-toggle {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border-radius: 6px;
}
.password-toggle:hover {
  color: var(--primary-navy);
  background: rgba(0, 0, 0, 0.04);
}
.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 10px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.4;
  min-height: 44px;
}
.checkbox-label input {
  margin-top: 0;
  accent-color: var(--primary-navy);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.forgot-link {
  font-size: 14px;
  color: var(--primary-navy);
  font-weight: 500;
  text-decoration: none;
  padding: 10px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.forgot-link:hover {
  text-decoration: underline;
}
.auth-submit {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  min-height: 52px;
}
.auth-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.auth-footer p {
  font-size: 14px;
  color: var(--text-muted);
}
.auth-footer a {
  color: var(--primary-navy);
  font-weight: 600;
}
.auth-footer a:hover {
  text-decoration: underline;
}
.demo-accounts {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.demo-title {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
  text-align: center;
}
.demo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.demo-list button {
  padding: 8px 16px;
  font-size: 12px;
  background: var(--accent-light);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--primary-navy);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
  min-height: 36px;
}
.demo-list button:hover {
  background: var(--primary-navy);
  color: #ffffff;
  border-color: var(--primary-navy);
}
.forgot-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      135deg,
      #f9fafb 0%,
      #f3f4f6 50%,
      #e5e7eb 100%);
  padding: 20px;
  overflow-x: hidden;
}
.forgot-wrapper {
  width: 100%;
  max-width: 440px;
}
.forgot-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}
.forgot-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 28px;
  transition: color 0.2s;
  text-decoration: none;
  min-height: 44px;
}
.forgot-back:hover {
  color: var(--primary-navy);
}
.forgot-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.forgot-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
}
.forgot-success {
  text-align: center;
}
.forgot-success-icon {
  margin-bottom: 20px;
}
.forgot-success h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.forgot-success p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}
.forgot-hint {
  font-size: 13px !important;
  color: var(--text-muted);
  margin-bottom: 24px !important;
}
@media (max-width: 900px) {
  .auth-page {
    align-items: flex-start;
    padding: 28px 20px;
    min-height: 100vh;
  }
  .auth-container {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: auto;
    border-radius: 20px;
  }
  .auth-left {
    display: none;
  }
  .auth-right {
    padding: 32px 36px 40px;
    justify-content: flex-start;
  }
  .auth-mobile-brand {
    display: flex;
  }
  .auth-header h2 {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .auth-page {
    padding: 16px;
  }
  .auth-container {
    border-radius: 16px;
    max-width: 100%;
  }
  .auth-right {
    padding: 24px 20px 32px;
  }
  .auth-mobile-brand {
    padding: 16px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
  }
  .auth-mobile-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }
  .auth-mobile-name {
    font-size: 14px;
  }
  .auth-mobile-tagline {
    font-size: 11px;
  }
  .auth-header {
    margin-bottom: 22px;
  }
  .auth-header h2 {
    font-size: 22px;
  }
  .auth-header p {
    font-size: 14px;
  }
  .auth-card {
    max-width: 100%;
  }
  .demo-list {
    gap: 6px;
  }
  .demo-list button {
    font-size: 11px;
    padding: 6px 12px;
  }
  .forgot-page {
    padding: 16px;
    align-items: flex-start;
  }
  .forgot-card {
    padding: 28px 20px;
    border-radius: 14px;
  }
  .forgot-success h2 {
    font-size: 22px;
  }
}
@media (max-width: 400px) {
  .auth-page {
    padding: 12px;
  }
  .auth-right {
    padding: 20px 16px 28px;
  }
  .auth-mobile-brand {
    padding: 14px 16px;
    gap: 12px;
    margin-bottom: 18px;
  }
  .auth-mobile-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  .auth-mobile-name {
    font-size: 13px;
  }
  .auth-mobile-tagline {
    font-size: 10.5px;
    white-space: normal;
  }
  .auth-header h2 {
    font-size: 20px;
  }
  .auth-header p {
    font-size: 13px;
  }
  .auth-header {
    margin-bottom: 18px;
  }
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .auth-submit {
    padding: 13px;
    font-size: 15px;
  }
  .demo-list {
    flex-direction: column;
  }
  .demo-list button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .forgot-card {
    padding: 24px 14px;
    border-radius: 12px;
  }
  .forgot-success h2 {
    font-size: 20px;
  }
  .forgot-success p {
    font-size: 14px;
  }
}

/* src/pages/PolicyPage.css */
.policy-page {
  --navy: #2d3748;
  --navy-dark: #1e2432;
  --gold: #d4af37;
  --gold-light: rgba(212, 175, 55, 0.12);
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;
  min-height: 100vh;
  background: var(--gray-50);
  display: flex;
  flex-direction: column;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  color: var(--gray-800);
}
.policy-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-dark);
  border-bottom: 2px solid var(--gold);
}
.policy-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.policy-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 0;
  flex-shrink: 0;
}
.policy-nav-logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}
.policy-nav-name {
  color: var(--white);
}
.policy-nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.policy-toc-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 13px;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s;
}
.policy-toc-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
}
.policy-home-link {
  background: none;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.policy-home-link:hover {
  background: var(--gold-light);
  border-color: var(--gold);
}
.policy-toc-drawer {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.policy-toc-drawer-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.policy-toc-drawer-item {
  background: none;
  border: none;
  text-align: left;
  padding: 7px 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.policy-toc-drawer-item:hover,
.policy-toc-drawer-item.active {
  background: var(--gold-light);
  color: var(--gold);
}
.policy-toc-l2 {
  padding-left: 12px;
}
.policy-toc-l3 {
  padding-left: 24px;
  font-size: 13px;
}
.policy-layout {
  display: flex;
  flex: 1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 32px;
  gap: 40px;
  align-items: flex-start;
}
.policy-sidebar {
  flex-shrink: 0;
  width: 240px;
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  padding: 32px 0 48px;
}
.policy-toc {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 20px 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.policy-toc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  padding-left: 8px;
}
.policy-toc-item {
  display: block;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 7px 8px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--gray-600);
  cursor: pointer;
  border-radius: 6px;
  border-left: 2px solid transparent;
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
}
.policy-toc-item:hover {
  background: var(--gray-100);
  color: var(--navy-dark);
}
.policy-toc-item.active {
  background: var(--gold-light);
  color: var(--navy-dark);
  font-weight: 600;
  border-left-color: var(--gold);
}
.policy-toc-l2 {
  padding-left: 8px;
}
.policy-toc-l3 {
  padding-left: 20px;
  font-size: 12px;
}
.policy-toc-sibling {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}
.policy-toc-sibling-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  margin-bottom: 8px;
  padding-left: 8px;
}
.policy-toc-sibling-btn {
  background: none;
  border: none;
  padding: 7px 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-dark);
  cursor: pointer;
  text-align: left;
  width: 100%;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.policy-toc-sibling-btn:hover {
  background: var(--gold-light);
  color: var(--gold);
}
.policy-main {
  flex: 1;
  min-width: 0;
  padding: 40px 0 80px;
}
.policy-content {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 48px 56px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.policy-header {
  margin-bottom: 36px;
}
.policy-header-tag {
  display: inline-block;
  background: var(--gold-light);
  color: #8a6d00;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.policy-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy-dark);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.policy-title-accent {
  width: 48px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}
.policy-body {
  line-height: 1.75;
  color: var(--gray-800);
  font-size: 15.5px;
}
.policy-body > * + * {
  margin-top: 0.9em;
}
.policy-body h1,
.policy-body h2,
.policy-body h3,
.policy-body h4 {
  color: var(--navy-dark);
  line-height: 1.3;
  scroll-margin-top: 80px;
}
.policy-body h1 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 2.5em;
}
.policy-body h2 {
  font-size: 19px;
  font-weight: 700;
  margin-top: 2.2em;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-200);
}
.policy-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 1.8em;
}
.policy-body h4 {
  font-size: 15px;
  font-weight: 600;
  margin-top: 1.4em;
  color: var(--gray-600);
}
.policy-body p {
  margin-bottom: 0;
}
.policy-body ul,
.policy-body ol {
  padding-left: 1.5em;
  margin: 0.5em 0;
}
.policy-body li {
  margin-bottom: 0.3em;
}
.policy-body strong {
  font-weight: 600;
  color: var(--gray-900);
}
.policy-body em {
  font-style: italic;
}
.policy-body a {
  color: #7a5c00;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.policy-body a:hover {
  opacity: 0.75;
}
.policy-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: 14px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.policy-body th,
.policy-body td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
}
.policy-body th {
  background: var(--gray-100);
  font-weight: 600;
  color: var(--navy);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.policy-body tr:last-child td {
  border-bottom: none;
}
.policy-body tr:nth-child(even) td {
  background: var(--gray-50);
}
.policy-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 12px 20px;
  margin: 1.2em 0;
  background: var(--gold-light);
  color: var(--gray-600);
  border-radius: 0 8px 8px 0;
  font-style: italic;
}
.policy-sibling {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  font-size: 14px;
  color: var(--gray-500);
}
.policy-sibling-link {
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-dark);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.policy-sibling-link:hover {
  color: var(--gold);
}
.policy-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
  text-align: center;
  gap: 16px;
}
.policy-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: policy-spin 0.7s linear infinite;
}
@keyframes policy-spin {
  to {
    transform: rotate(360deg);
  }
}
.policy-state p {
  color: var(--gray-500);
  font-size: 15px;
}
.policy-not-found-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy-dark);
}
.policy-not-found-msg {
  color: var(--gray-500);
  font-size: 16px;
}
.policy-error-msg {
  color: var(--gray-500);
  font-size: 16px;
}
.policy-retry-btn {
  background: var(--navy-dark);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.policy-retry-btn:hover {
  opacity: 0.85;
}
.policy-footer {
  background: var(--navy-dark);
  padding: 22px 32px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}
.policy-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.policy-footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.policy-footer-links button {
  background: none;
  border: none;
  padding: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: color 0.2s;
}
.policy-footer-links button:hover {
  color: var(--gold);
}
@media (max-width: 1024px) {
  .policy-layout {
    padding: 0 24px;
    gap: 28px;
  }
  .policy-sidebar {
    width: 200px;
  }
  .policy-content {
    padding: 36px 36px;
  }
}
@media (max-width: 768px) {
  .policy-nav-inner {
    padding: 0 20px;
  }
  .policy-toc-toggle {
    display: block;
  }
  .policy-sidebar {
    display: none;
  }
  .policy-layout {
    flex-direction: column;
    padding: 0 16px;
    gap: 0;
  }
  .policy-main {
    padding: 24px 0 60px;
  }
  .policy-content {
    padding: 28px 24px;
    border-radius: 12px;
  }
  .policy-title {
    font-size: 26px;
  }
  .policy-body {
    font-size: 15px;
  }
  .policy-body h2 {
    font-size: 17px;
  }
  .policy-footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .policy-footer {
    padding: 20px 20px;
  }
}
@media (max-width: 480px) {
  .policy-nav-name {
    display: none;
  }
  .policy-content {
    padding: 22px 18px;
  }
  .policy-title {
    font-size: 22px;
  }
}

/* node_modules/react-quill-new/dist/quill.snow.css */
.ql-container {
  box-sizing: border-box;
  font-family:
    Helvetica,
    Arial,
    sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container:not(.ql-disabled) li[data-list=checked] > .ql-ui,
.ql-container:not(.ql-disabled) li[data-list=unchecked] > .ql-ui {
  cursor: pointer;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
}
@supports (counter-set:none) {
  .ql-editor p,
  .ql-editor h1,
  .ql-editor h2,
  .ql-editor h3,
  .ql-editor h4,
  .ql-editor h5,
  .ql-editor h6 {
    counter-set: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor p,
  .ql-editor h1,
  .ql-editor h2,
  .ql-editor h3,
  .ql-editor h4,
  .ql-editor h5,
  .ql-editor h6 {
    counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor table {
  border-collapse: collapse;
}
.ql-editor td {
  border: 1px solid #000;
  padding: 2px 5px;
}
.ql-editor ol {
  padding-left: 1.5em;
}
.ql-editor li {
  list-style-type: none;
  padding-left: 1.5em;
  position: relative;
}
.ql-editor li > .ql-ui:before {
  display: inline-block;
  margin-left: -1.5em;
  margin-right: .3em;
  text-align: right;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li[data-list=checked] > .ql-ui,
.ql-editor li[data-list=unchecked] > .ql-ui {
  color: #777;
}
.ql-editor li[data-list=bullet] > .ql-ui:before {
  content: "\2022";
}
.ql-editor li[data-list=checked] > .ql-ui:before {
  content: "\2611";
}
.ql-editor li[data-list=unchecked] > .ql-ui:before {
  content: "\2610";
}
@supports (counter-set:none) {
  .ql-editor li[data-list] {
    counter-set: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list] {
    counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered] {
  counter-increment: list-0;
}
.ql-editor li[data-list=ordered] > .ql-ui:before {
  content: counter(list-0, decimal) ". ";
}
.ql-editor li[data-list=ordered].ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor li[data-list=ordered].ql-indent-1 > .ql-ui:before {
  content: counter(list-1, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-1 {
    counter-set: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-1 {
    counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor li[data-list=ordered].ql-indent-2 > .ql-ui:before {
  content: counter(list-2, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-2 {
    counter-set: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-2 {
    counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor li[data-list=ordered].ql-indent-3 > .ql-ui:before {
  content: counter(list-3, decimal) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-3 {
    counter-set: list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-3 {
    counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor li[data-list=ordered].ql-indent-4 > .ql-ui:before {
  content: counter(list-4, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-4 {
    counter-set: list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-4 {
    counter-reset: list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor li[data-list=ordered].ql-indent-5 > .ql-ui:before {
  content: counter(list-5, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-5 {
    counter-set: list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-5 {
    counter-reset: list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor li[data-list=ordered].ql-indent-6 > .ql-ui:before {
  content: counter(list-6, decimal) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-6 {
    counter-set: list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-6 {
    counter-reset: list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor li[data-list=ordered].ql-indent-7 > .ql-ui:before {
  content: counter(list-7, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-7 {
    counter-set: list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-7 {
    counter-reset: list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor li[data-list=ordered].ql-indent-8 > .ql-ui:before {
  content: counter(list-8, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-8 {
    counter-set: list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-8 {
    counter-reset: list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor li[data-list=ordered].ql-indent-9 > .ql-ui:before {
  content: counter(list-9, decimal) ". ";
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor li.ql-direction-rtl > .ql-ui:before {
  margin-left: .3em;
  margin-right: -1.5em;
  text-align: left;
}
.ql-editor table {
  table-layout: fixed;
  width: 100%;
}
.ql-editor table td {
  outline: none;
}
.ql-editor .ql-code-block-container {
  font-family: monospace;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family:
    Georgia,
    Times New Roman,
    serif;
}
.ql-editor .ql-font-monospace {
  font-family:
    Monaco,
    Courier New,
    monospace;
}
.ql-editor .ql-size-small {
  font-size: .75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor .ql-ui {
  position: absolute;
}
.ql-editor.ql-blank::before {
  color: rgba(0, 0, 0, 0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}
.ql-snow.ql-toolbar:after,
.ql-snow .ql-toolbar:after {
  clear: both;
  content: "";
  display: table;
}
.ql-snow.ql-toolbar button,
.ql-snow .ql-toolbar button {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 24px;
  padding: 3px 5px;
  width: 28px;
}
.ql-snow.ql-toolbar button svg,
.ql-snow .ql-toolbar button svg {
  float: left;
  height: 100%;
}
.ql-snow.ql-toolbar button:active:hover,
.ql-snow .ql-toolbar button:active:hover {
  outline: none;
}
.ql-snow.ql-toolbar input.ql-image[type=file],
.ql-snow .ql-toolbar input.ql-image[type=file] {
  display: none;
}
.ql-snow.ql-toolbar button:hover,
.ql-snow .ql-toolbar button:hover,
.ql-snow.ql-toolbar button:focus,
.ql-snow .ql-toolbar button:focus,
.ql-snow.ql-toolbar button.ql-active,
.ql-snow .ql-toolbar button.ql-active,
.ql-snow.ql-toolbar .ql-picker-label:hover,
.ql-snow .ql-toolbar .ql-picker-label:hover,
.ql-snow.ql-toolbar .ql-picker-label.ql-active,
.ql-snow .ql-toolbar .ql-picker-label.ql-active,
.ql-snow.ql-toolbar .ql-picker-item:hover,
.ql-snow .ql-toolbar .ql-picker-item:hover,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected {
  color: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-fill,
.ql-snow .ql-toolbar button:hover .ql-fill,
.ql-snow.ql-toolbar button:focus .ql-fill,
.ql-snow .ql-toolbar button:focus .ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
  fill: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-stroke,
.ql-snow .ql-toolbar button:hover .ql-stroke,
.ql-snow.ql-toolbar button:focus .ql-stroke,
.ql-snow .ql-toolbar button:focus .ql-stroke,
.ql-snow.ql-toolbar button.ql-active .ql-stroke,
.ql-snow .ql-toolbar button.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow.ql-toolbar button:hover .ql-stroke-miter,
.ql-snow .ql-toolbar button:hover .ql-stroke-miter,
.ql-snow.ql-toolbar button:focus .ql-stroke-miter,
.ql-snow .ql-toolbar button:focus .ql-stroke-miter,
.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
  stroke: #06c;
}
@media (pointer:coarse) {
  .ql-snow.ql-toolbar button:hover:not(.ql-active),
  .ql-snow .ql-toolbar button:hover:not(.ql-active) {
    color: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
    fill: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
    stroke: #444;
  }
}
.ql-snow {
  box-sizing: border-box;
}
.ql-snow * {
  box-sizing: border-box;
}
.ql-snow .ql-hidden {
  display: none;
}
.ql-snow .ql-out-bottom,
.ql-snow .ql-out-top {
  visibility: hidden;
}
.ql-snow .ql-tooltip {
  position: absolute;
  transform: translateY(10px);
}
.ql-snow .ql-tooltip a {
  cursor: pointer;
  text-decoration: none;
}
.ql-snow .ql-tooltip.ql-flip {
  transform: translateY(-10px);
}
.ql-snow .ql-formats {
  display: inline-block;
  vertical-align: middle;
}
.ql-snow .ql-formats:after {
  clear: both;
  content: "";
  display: table;
}
.ql-snow .ql-stroke {
  fill: none;
  stroke: #444;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.ql-snow .ql-stroke-miter {
  fill: none;
  stroke: #444;
  stroke-miterlimit: 10;
  stroke-width: 2;
}
.ql-snow .ql-fill,
.ql-snow .ql-stroke.ql-fill {
  fill: #444;
}
.ql-snow .ql-empty {
  fill: none;
}
.ql-snow .ql-even {
  fill-rule: evenodd;
}
.ql-snow .ql-thin,
.ql-snow .ql-stroke.ql-thin {
  stroke-width: 1;
}
.ql-snow .ql-transparent {
  opacity: .4;
}
.ql-snow .ql-direction svg:last-child {
  display: none;
}
.ql-snow .ql-direction.ql-active svg:last-child {
  display: inline;
}
.ql-snow .ql-direction.ql-active svg:first-child {
  display: none;
}
.ql-snow .ql-editor h1 {
  font-size: 2em;
}
.ql-snow .ql-editor h2 {
  font-size: 1.5em;
}
.ql-snow .ql-editor h3 {
  font-size: 1.17em;
}
.ql-snow .ql-editor h4 {
  font-size: 1em;
}
.ql-snow .ql-editor h5 {
  font-size: .83em;
}
.ql-snow .ql-editor h6 {
  font-size: .67em;
}
.ql-snow .ql-editor a {
  text-decoration: underline;
}
.ql-snow .ql-editor blockquote {
  border-left: 4px solid #ccc;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 16px;
}
.ql-snow .ql-editor code,
.ql-snow .ql-editor .ql-code-block-container {
  background-color: #f0f0f0;
  border-radius: 3px;
}
.ql-snow .ql-editor .ql-code-block-container {
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 5px 10px;
}
.ql-snow .ql-editor code {
  font-size: 85%;
  padding: 2px 4px;
}
.ql-snow .ql-editor .ql-code-block-container {
  background-color: #23241f;
  color: #f8f8f2;
  overflow: visible;
}
.ql-snow .ql-editor img {
  max-width: 100%;
}
.ql-snow .ql-picker {
  color: #444;
  display: inline-block;
  float: left;
  font-size: 14px;
  font-weight: 500;
  height: 24px;
  position: relative;
  vertical-align: middle;
}
.ql-snow .ql-picker-label {
  cursor: pointer;
  display: inline-block;
  height: 100%;
  padding-left: 8px;
  padding-right: 2px;
  position: relative;
  width: 100%;
}
.ql-snow .ql-picker-label::before {
  display: inline-block;
  line-height: 22px;
}
.ql-snow .ql-picker-options {
  background-color: #fff;
  display: none;
  min-width: 100%;
  padding: 4px 8px;
  position: absolute;
  white-space: nowrap;
}
.ql-snow .ql-picker-options .ql-picker-item {
  cursor: pointer;
  display: block;
  padding-bottom: 5px;
  padding-top: 5px;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  color: #ccc;
  z-index: 2;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
  fill: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
  stroke: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  display: block;
  margin-top: -1px;
  top: 100%;
  z-index: 1;
}
.ql-snow .ql-color-picker,
.ql-snow .ql-icon-picker {
  width: 28px;
}
.ql-snow .ql-color-picker .ql-picker-label,
.ql-snow .ql-icon-picker .ql-picker-label {
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-label svg,
.ql-snow .ql-icon-picker .ql-picker-label svg {
  right: 4px;
}
.ql-snow .ql-icon-picker .ql-picker-options {
  padding: 4px 0;
}
.ql-snow .ql-icon-picker .ql-picker-item {
  height: 24px;
  width: 24px;
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-options {
  padding: 3px 5px;
  width: 152px;
}
.ql-snow .ql-color-picker .ql-picker-item {
  border: 1px solid transparent;
  float: left;
  height: 16px;
  margin: 2px;
  padding: 0;
  width: 16px;
}
.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
  position: absolute;
  margin-top: -9px;
  right: 0;
  top: 50%;
  width: 18px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=""])::before {
  content: attr(data-label);
}
.ql-snow .ql-picker.ql-header {
  width: 98px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label::before,
.ql-snow .ql-picker.ql-header .ql-picker-item::before {
  content: "Normal";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  content: "Heading 1";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  content: "Heading 2";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  content: "Heading 3";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  content: "Heading 4";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  content: "Heading 5";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  content: "Heading 6";
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  font-size: 2em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  font-size: 1.5em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  font-size: 1.17em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  font-size: 1em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  font-size: .83em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  font-size: .67em;
}
.ql-snow .ql-picker.ql-font {
  width: 108px;
}
.ql-snow .ql-picker.ql-font .ql-picker-label::before,
.ql-snow .ql-picker.ql-font .ql-picker-item::before {
  content: "Sans Serif";
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  content: "Serif";
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  content: "Monospace";
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  font-family:
    Georgia,
    Times New Roman,
    serif;
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  font-family:
    Monaco,
    Courier New,
    monospace;
}
.ql-snow .ql-picker.ql-size {
  width: 98px;
}
.ql-snow .ql-picker.ql-size .ql-picker-label::before,
.ql-snow .ql-picker.ql-size .ql-picker-item::before {
  content: "Normal";
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  content: "Small";
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  content: "Large";
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  content: "Huge";
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  font-size: 10px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  font-size: 18px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  font-size: 32px;
}
.ql-snow .ql-color-picker.ql-background .ql-picker-item {
  background-color: #fff;
}
.ql-snow .ql-color-picker.ql-color .ql-picker-item {
  background-color: #000;
}
.ql-code-block-container {
  position: relative;
}
.ql-code-block-container .ql-ui {
  right: 5px;
  top: 5px;
}
.ql-toolbar.ql-snow {
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family:
    "Helvetica Neue",
    "Helvetica",
    "Arial",
    sans-serif;
  padding: 8px;
}
.ql-toolbar.ql-snow .ql-formats {
  margin-right: 15px;
}
.ql-toolbar.ql-snow .ql-picker-label {
  border: 1px solid transparent;
}
.ql-toolbar.ql-snow .ql-picker-options {
  border: 1px solid transparent;
  box-shadow: rgba(0, 0, 0, 0.2) 0 2px 8px;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
  border-color: #000;
}
.ql-toolbar.ql-snow + .ql-container.ql-snow {
  border-top: 0;
}
.ql-snow .ql-tooltip {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 0 5px #ddd;
  color: #444;
  padding: 5px 12px;
  white-space: nowrap;
}
.ql-snow .ql-tooltip::before {
  content: "Visit URL:";
  line-height: 26px;
  margin-right: 8px;
}
.ql-snow .ql-tooltip input[type=text] {
  display: none;
  border: 1px solid #ccc;
  font-size: 13px;
  height: 26px;
  margin: 0;
  padding: 3px 5px;
  width: 170px;
}
.ql-snow .ql-tooltip a.ql-preview {
  display: inline-block;
  max-width: 200px;
  overflow-x: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}
.ql-snow .ql-tooltip a.ql-action::after {
  border-right: 1px solid #ccc;
  content: "Edit";
  margin-left: 16px;
  padding-right: 8px;
}
.ql-snow .ql-tooltip a.ql-remove::before {
  content: "Remove";
  margin-left: 8px;
}
.ql-snow .ql-tooltip a {
  line-height: 26px;
}
.ql-snow .ql-tooltip.ql-editing a.ql-preview,
.ql-snow .ql-tooltip.ql-editing a.ql-remove {
  display: none;
}
.ql-snow .ql-tooltip.ql-editing input[type=text] {
  display: inline-block;
}
.ql-snow .ql-tooltip.ql-editing a.ql-action::after {
  border-right: 0;
  content: "Save";
  padding-right: 0;
}
.ql-snow .ql-tooltip[data-mode=link]::before {
  content: "Enter link:";
}
.ql-snow .ql-tooltip[data-mode=formula]::before {
  content: "Enter formula:";
}
.ql-snow .ql-tooltip[data-mode=video]::before {
  content: "Enter video:";
}
.ql-snow a {
  color: #06c;
}
.ql-container.ql-snow {
  border: 1px solid #ccc;
}

/* src/styles/global.css */
:root {
  --primary-dark: #1e2432;
  --primary-navy: #2d3748;
  --primary-blue: #4a5568;
  --accent-cream: #f5f0dc;
  --accent-gold: #d4af37;
  --accent-light: #f8f9fa;
  --accent-subtle: #f1f3f5;
  --text-light: #f7fafc;
  --text-dark: #1a202c;
  --text-muted: #718096;
  --success: #48bb78;
  --warning: #ed8936;
  --danger: #e53e3e;
  --border: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
  --sidebar-bg: #ffffff;
  --sidebar-text: #374151;
  --sidebar-text-muted: #6b7280;
  --sidebar-hover: #f3f4f6;
  --sidebar-active: rgba(45,55,72,0.08);
  --sidebar-active-text: #2d3748;
  --sidebar-border: #e5e7eb;
  --card-bg: #ffffff;
  --page-bg: #f9fafb;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    sans-serif;
  background-color: var(--page-bg);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  font-family: inherit;
  touch-action: manipulation;
}
input,
textarea,
select {
  font-family: inherit;
  touch-action: manipulation;
}
img {
  max-width: 100%;
  height: auto;
}
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  min-height: 44px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary-navy);
  color: #ffffff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: #f3f4f6;
  color: var(--primary-navy);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--primary-navy);
  color: #ffffff;
}
.btn-outline {
  background: transparent;
  color: var(--primary-navy);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  background: var(--primary-navy);
  color: #ffffff;
}
.btn-success {
  background: var(--success);
  color: white;
}
.btn-danger {
  background: var(--danger);
  color: white;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
  gap: 6px;
  min-height: 36px;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}
.page-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 14px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.2s ease;
  background: white;
  color: var(--text-dark);
  min-height: 48px;
}
.form-input:focus {
  outline: none;
  border-color: var(--primary-navy);
  box-shadow: 0 0 0 3px rgba(45, 55, 72, 0.1);
}
.form-input::placeholder {
  color: var(--text-muted);
}
textarea.form-input {
  min-height: 120px;
  resize: vertical;
}
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}
.badge-success {
  background: rgba(72, 187, 120, 0.1);
  color: var(--success);
}
.badge-warning {
  background: rgba(237, 137, 54, 0.1);
  color: var(--warning);
}
.badge-danger {
  background: rgba(245, 101, 101, 0.1);
  color: var(--danger);
}
.badge-primary {
  background: rgba(45, 55, 72, 0.08);
  color: var(--primary-navy);
}
.table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}
th,
td {
  text-align: left;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}
th {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
tr:hover {
  background: var(--accent-light);
}
.page-header {
  margin-bottom: 32px;
}
.page-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.page-subtitle {
  color: var(--text-muted);
  font-size: 16px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.stat-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.stat-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.stat-card .icon.primary {
  background: rgba(45, 55, 72, 0.08);
  color: var(--primary-navy);
}
.stat-card .icon.success {
  background: rgba(72, 187, 120, 0.1);
  color: var(--success);
}
.stat-card .icon.warning {
  background: rgba(237, 137, 54, 0.1);
  color: var(--warning);
}
.stat-card .value {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.stat-card .label {
  color: var(--text-muted);
  font-size: 14px;
}
.tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar {
  display: none;
}
.tab {
  padding: 12px 20px;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.tab:hover {
  color: var(--primary-navy);
}
.tab.active {
  color: var(--primary-navy);
  border-bottom-color: var(--primary-navy);
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 16px;
  overflow-y: auto;
}
.modal {
  background: white;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.modal-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.modal-title {
  font-size: 20px;
  font-weight: 600;
}
.modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}
.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}
.avatar-lg {
  width: 64px;
  height: 64px;
  font-size: 20px;
}
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.empty-state svg {
  margin-bottom: 16px;
  opacity: 0.5;
}
.empty-state h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.loading-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
}
@media (min-width: 1280px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .page-header {
    margin-bottom: 20px;
  }
  .page-title {
    font-size: 22px;
  }
  .page-subtitle {
    font-size: 14px;
  }
  .card {
    padding: 16px;
    border-radius: 10px;
  }
  .stat-card {
    padding: 16px;
  }
  .stat-card .value {
    font-size: 24px;
  }
  .stat-card .icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }
  .btn {
    padding: 10px 18px;
    font-size: 13px;
  }
  .btn-sm {
    padding: 8px 14px;
    font-size: 12px;
    min-height: 36px;
  }
  .tab {
    padding: 10px 14px;
    font-size: 13px;
  }
  th,
  td {
    padding: 12px 8px;
    font-size: 13px;
  }
  .modal-overlay {
    padding: 16px;
    align-items: center;
  }
  .modal {
    max-height: 85vh;
    border-radius: 16px;
    width: 100%;
    max-width: 100%;
  }
  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 16px;
  }
  .modal-title {
    font-size: 18px;
  }
  .form-input {
    padding: 12px 14px;
  }
  .avatar {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
  .avatar-lg {
    width: 56px;
    height: 56px;
    font-size: 18px;
  }
  .empty-state {
    padding: 40px 16px;
  }
  .empty-state h3 {
    font-size: 16px;
  }
  .page-actions {
    gap: 8px;
  }
  .page-actions .btn {
    flex: 1;
    min-width: 120px;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }
  .page-title {
    font-size: 20px;
  }
  .page-subtitle {
    font-size: 13px;
  }
  .btn {
    padding: 10px 16px;
    font-size: 13px;
    gap: 6px;
  }
  .btn-sm {
    padding: 7px 12px;
    font-size: 12px;
    min-height: 34px;
  }
  .stats-grid {
    gap: 10px;
  }
  .card {
    padding: 14px;
  }
  .stat-card {
    padding: 14px;
  }
  .stat-card .value {
    font-size: 22px;
  }
  .modal-overlay {
    padding: 12px;
  }
  .modal {
    border-radius: 14px;
    max-height: 82vh;
  }
  .modal-header,
  .modal-body {
    padding: 14px;
  }
  .modal-footer {
    padding: 12px 14px;
    flex-direction: column;
    gap: 8px;
  }
  .modal-footer .btn {
    width: 100%;
    justify-content: center;
  }
  .form-group {
    margin-bottom: 16px;
  }
  th,
  td {
    padding: 10px 6px;
    font-size: 12px;
  }
  .page-actions {
    flex-direction: column;
  }
  .page-actions .btn {
    width: 100%;
  }
}
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }
  .page-title {
    font-size: 18px;
  }
  .page-subtitle {
    font-size: 13px;
  }
  .card {
    padding: 12px;
  }
  .stat-card {
    padding: 12px;
  }
  .stat-card .value {
    font-size: 20px;
  }
  .stat-card .icon {
    width: 36px;
    height: 36px;
  }
  .stat-card .label {
    font-size: 13px;
  }
  .btn {
    font-size: 12px;
    padding: 9px 14px;
  }
  .btn-sm {
    font-size: 11px;
    padding: 6px 10px;
  }
  .tab {
    padding: 9px 10px;
    font-size: 12px;
  }
  th,
  td {
    padding: 8px 4px;
    font-size: 11px;
  }
  .modal-header,
  .modal-body {
    padding: 12px;
  }
  .modal-footer {
    padding: 10px 12px;
  }
  .modal-title {
    font-size: 16px;
  }
  .avatar {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  .avatar-lg {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }
  .empty-state {
    padding: 32px 12px;
  }
  .empty-state h3 {
    font-size: 15px;
  }
}
.email-template-editor .ql-toolbar {
  background: #f8fafc;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 8px 10px;
}
.email-template-editor .ql-container {
  border: none;
  font-size: 14px;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}
.email-template-editor .ql-editor {
  min-height: 340px;
  padding: 24px;
  background: #f8fafc;
  color: #333;
  line-height: 1.6;
}
.email-template-editor .ql-editor h1,
.email-template-editor .ql-editor h2,
.email-template-editor .ql-editor h3 {
  color: #1e293b;
  margin-top: 0;
}
.email-template-editor .ql-editor a {
  color: #2563eb;
  text-decoration: underline;
}
.email-template-editor .ql-editor ul,
.email-template-editor .ql-editor ol {
  padding-left: 24px;
}
.email-template-editor .ql-editor.ql-blank::before {
  font-style: normal;
  color: #94a3b8;
  padding: 0 24px;
}
.email-template-editor .ql-snow .ql-picker.ql-header {
  width: 110px;
}
.email-template-editor {
  position: relative;
}
.email-template-editor::after {
  content: "\2014  This is an automated message from Interview Dress Rehearsal Platform \2014";
  display: block;
  padding: 10px 12px;
  text-align: center;
  font-size: 11px;
  color: #94a3b8;
  background: white;
  border-top: 1px solid var(--border);
}
/*! Bundled license information:

react-quill-new/dist/quill.snow.css:
  (*!
   * Quill Editor v2.0.3
   * https://quilljs.com
   * Copyright (c) 2017-2024, Slab
   * Copyright (c) 2014, Jason Chen
   * Copyright (c) 2013, salesforce.com
   *)
*/
/*# sourceMappingURL=main.css.map */
