/* ============================================================
   RequestNotes — Components CSS
   © Last Minute Education Pvt. Limited
   ============================================================ */

/* ═══════════════════════════════════════════
   HEADER & NAVIGATION
═══════════════════════════════════════════ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background-color: rgba(9,9,11,0.85);
  transition: background-color 0.2s ease;
}

.light .header {
  background-color: rgba(250,250,249,0.9);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  transition: opacity 0.15s ease;
}

.header__logo:hover {
  opacity: 0.85;
  color: var(--text);
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
}

.logo-text {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

/* Nav Links */
.header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--radius);
  transition: all 0.15s ease;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--text);
  background: var(--surface);
}

.nav-link--active {
  color: var(--text);
  background: var(--surface);
}

/* Header Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Theme Toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 1rem;
  transition: all 0.15s ease;
  cursor: pointer;
}

.theme-toggle:hover {
  border-color: var(--border-light);
  color: var(--text);
  background: var(--card);
}

.icon-light { display: none; }
.icon-dark  { display: inline; }

.light .icon-dark  { display: none; }
.light .icon-light { display: inline; }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--muted);
  transition: all 0.15s ease;
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .header__nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 12px 16px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .header__nav.open {
    display: flex;
  }

  .nav-link {
    width: 100%;
    padding: 10px 12px;
  }
}


/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1;
}

.btn--lg {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.btn--sm {
  padding: 6px 14px;
  font-size: 0.8125rem;
}

/* Primary */
.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn--primary:hover {
  background: #5558e3;
  border-color: #5558e3;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(99,102,241,0.3);
}

/* Secondary */
.btn--secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.btn--secondary:hover {
  background: var(--card);
  border-color: var(--border-light);
  color: var(--text);
  transform: translateY(-1px);
}

/* Ghost */
.btn--ghost {
  background: transparent;
  color: var(--muted);
  border-color: transparent;
}

.btn--ghost:hover {
  background: var(--surface);
  color: var(--text);
}

/* Outline */
.btn--outline {
  background: transparent;
  color: var(--accent2);
  border-color: var(--accent);
}

.btn--outline:hover {
  background: rgba(99,102,241,0.08);
  color: var(--accent2);
  transform: translateY(-1px);
}


/* ═══════════════════════════════════════════
   BADGES
═══════════════════════════════════════════ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  border: 1px solid transparent;
}

.badge--default {
  background: var(--surface);
  color: var(--muted);
  border-color: var(--border);
}

.badge--accent {
  background: rgba(99,102,241,0.12);
  color: var(--accent2);
  border-color: rgba(99,102,241,0.25);
}

.badge--green {
  background: rgba(34,197,94,0.1);
  color: var(--green);
  border-color: rgba(34,197,94,0.2);
}

.badge--amber {
  background: rgba(245,158,11,0.1);
  color: var(--amber);
  border-color: rgba(245,158,11,0.2);
}

.badge--teal {
  background: rgba(20,184,166,0.1);
  color: var(--teal);
  border-color: rgba(20,184,166,0.2);
}

.light .badge--green { color: var(--green-text, #15803d); }
.light .badge--amber { color: var(--amber-text, #b45309); }
.light .badge--teal  { color: var(--teal-text, #0f766e); }


/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100vh - var(--header-height));
  padding: 80px 24px 60px;
  position: relative;
}

.hero__badge {
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 820px;
  margin-bottom: 24px;
}

.hero__title .accent {
  color: var(--accent2);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* USP row */
.hero__usps {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__usp-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--muted);
}

.hero__usp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* Scroll hint / water-drop arrow */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.15s ease;
  text-decoration: none;
  color: var(--muted);
}

.scroll-hint:hover {
  opacity: 0.8;
  color: var(--muted);
}

.scroll-hint__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.scroll-hint__arrow {
  font-size: 1.25rem;
  animation: waterDrop 1.6s ease-in-out infinite;
}

@keyframes waterDrop {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}


/* ═══════════════════════════════════════════
   DOMAIN CARDS (Homepage)
═══════════════════════════════════════════ */

.domains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 40px;
}

.domain-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text);
  transition: all 0.15s ease;
  cursor: pointer;
}

.domain-card:hover {
  border-color: var(--accent);
  background: var(--surface);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.domain-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 1.375rem;
  line-height: 1;
  transition: all 0.15s ease;
}

.domain-card:hover .domain-card__icon {
  background: rgba(99,102,241,0.1);
  border-color: rgba(99,102,241,0.3);
}

.domain-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.01em;
}

.domain-card__count {
  font-size: 0.75rem;
  color: var(--dim);
}


/* ═══════════════════════════════════════════
   SUBDOMAIN CARDS (Domain Landing Pages)
═══════════════════════════════════════════ */

.subdomain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.subdomain-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text);
  transition: all 0.15s ease;
}

.subdomain-card:hover {
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.subdomain-card__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1.125rem;
}

.subdomain-card__body {
  flex: 1;
  min-width: 0;
}

.subdomain-card__title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.subdomain-card__desc {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.5;
}

.subdomain-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}


/* ═══════════════════════════════════════════
   NOTE CARDS (Subdomain/Note Listing Pages)
═══════════════════════════════════════════ */

.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.note-card {
  display: block;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text);
  transition: all 0.15s ease;
}

.note-card:hover {
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.note-card__title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.note-card__desc {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 14px;
}

.note-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.note-card__arrow {
  font-size: 0.875rem;
  color: var(--dim);
  transition: all 0.15s ease;
}

.note-card:hover .note-card__arrow {
  color: var(--accent2);
  transform: translateX(3px);
}

/* Live note card variant */
.note-card--live {
  border-color: rgba(34,197,94,0.2);
}

.note-card--live:hover {
  border-color: var(--green);
  box-shadow: 0 0 0 1px rgba(34,197,94,0.15), var(--shadow-md);
}


/* ═══════════════════════════════════════════
   PROVIDER TABS (e.g., Cloud: AWS / GCP / Azure)
═══════════════════════════════════════════ */

.provider-tabs {
  display: flex;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 4px;
  width: fit-content;
  margin-bottom: 32px;
}

.provider-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s ease;
  border: 1px solid transparent;
  background: none;
}

.provider-tab:hover {
  color: var(--text);
  background: var(--card);
}

.provider-tab.active {
  background: var(--card);
  color: var(--text);
  border-color: var(--border);
  font-weight: 600;
}

.provider-tab .tab-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

/* Tab content panels */
.tab-panel { display: none; }
.tab-panel.active { display: block; }


/* ═══════════════════════════════════════════
   FORMS
═══════════════════════════════════════════ */

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

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

.form-label-optional {
  font-size: 0.75rem;
  color: var(--dim);
  font-weight: 400;
  margin-left: 6px;
}

.form-control {
  width: 100%;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.9375rem;
  transition: all 0.15s ease;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
  outline: none;
}

.form-control::placeholder {
  color: var(--dim);
}

.form-control:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23a1a1aa' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  padding-right: 36px;
}

.form-hint {
  font-size: 0.75rem;
  color: var(--dim);
  margin-top: 4px;
}

.form-error {
  font-size: 0.75rem;
  color: var(--coral);
  margin-top: 4px;
  display: none;
}

.form-control.error {
  border-color: var(--coral);
}

.form-control.error + .form-error {
  display: block;
}

/* Form Status Messages */
.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 16px;
}

.form-status.success {
  display: block;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  color: var(--green);
}

.light .form-status.success {
  color: var(--green-text, #15803d);
}

.form-status.error {
  display: block;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.25);
  color: var(--coral);
}


/* ═══════════════════════════════════════════
   FORM CONTAINERS
═══════════════════════════════════════════ */

.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

@media (max-width: 600px) {
  .form-card { padding: 24px 20px; }
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}

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


/* ═══════════════════════════════════════════
   CALLOUT / INFO BOXES
═══════════════════════════════════════════ */

.callout {
  display: flex;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  margin: 20px 0;
}

.callout--info {
  border-color: rgba(99,102,241,0.3);
  background: rgba(99,102,241,0.06);
}

.callout--success {
  border-color: rgba(34,197,94,0.25);
  background: rgba(34,197,94,0.06);
}

.callout--warning {
  border-color: rgba(245,158,11,0.3);
  background: rgba(245,158,11,0.06);
}

.callout__icon {
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.callout__body p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0;
}

.callout__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}


/* ═══════════════════════════════════════════
   STAT / FEATURE BLOCKS
═══════════════════════════════════════════ */

.stat-card {
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.stat-card__value {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 4px;
}

.stat-card__label {
  font-size: 0.875rem;
  color: var(--muted);
}

/* Feature cards */
.feature-card {
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.15s ease;
}

.feature-card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99,102,241,0.1);
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.feature-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card__desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════
   PAGE HERO (Inner Pages)
═══════════════════════════════════════════ */

.page-hero {
  padding: 60px 0 48px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.page-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 12px;
}

.page-hero__title {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.page-hero__desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
}

.page-hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}


/* ═══════════════════════════════════════════
   REQUEST CTA BANNER
═══════════════════════════════════════════ */

.request-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-top: 40px;
}

@media (max-width: 600px) {
  .request-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
}

.request-cta__text h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.request-cta__text p {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
}


/* ═══════════════════════════════════════════
   COMING SOON PAGE
═══════════════════════════════════════════ */

.coming-soon-page {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.coming-soon-card {
  max-width: 600px;
  width: 100%;
  text-align: center;
  padding: 60px 48px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (max-width: 600px) {
  .coming-soon-card { padding: 40px 24px; }
}

.coming-soon-card__emoji {
  font-size: 3rem;
  margin-bottom: 24px;
}

.coming-soon-card__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.coming-soon-card__desc {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.coming-soon-card__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

.coming-soon-card__cta-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
}


/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */

.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  margin-top: auto;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

@media (max-width: 640px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.footer__brand-logo:hover {
  color: var(--text);
  opacity: 0.85;
}

.footer__brand-tagline {
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 300px;
  line-height: 1.6;
}

.footer__nav {
  display: flex;
  gap: 32px;
}

@media (max-width: 640px) {
  .footer__nav { gap: 16px; flex-wrap: wrap; }
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__nav-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 8px;
}

.footer__nav-link {
  font-size: 0.875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer__nav-link:hover {
  color: var(--text);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 8px;
}

.footer__copy {
  font-size: 0.8125rem;
  color: var(--dim);
}

.footer__legal {
  display: flex;
  gap: 16px;
}

.footer__legal a {
  font-size: 0.8125rem;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer__legal a:hover {
  color: var(--muted);
}


/* ═══════════════════════════════════════════
   EMPTY STATE
═══════════════════════════════════════════ */

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
}

.empty-state__icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  opacity: 0.5;
}

.empty-state__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.empty-state__desc {
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 360px;
  line-height: 1.65;
  margin-bottom: 24px;
}
