/* SEO Pilot - Global Styles */

:root {
  /* Typography */
  --font-body: 'Manrope', sans-serif;
  --font-display: 'Space Grotesk', 'Manrope', sans-serif;

  /* Colors */
  --primary: #1d4ed8;
  --primary-dark: #1e3a8a;
  --primary-light: #93c5fd;
  --secondary: #0f766e;
  --accent: #f59e0b;
  --success: #16a34a;
  --warning: #d97706;
  --danger: #dc2626;
  --info: #0284c7;
  --dark: #0f172a;
  --dark-light: #475569;
  --light: #eef2f6;
  --white: #ffffff;
  --surface: #ffffff;
  --surface-muted: #f8fafc;
  --line: rgba(15, 23, 42, 0.08);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #1d4ed8 0%, #0f766e 100%);
  --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gradient-canvas: radial-gradient(1200px circle at 10% -20%, #dbeafe 0%, transparent 60%),
    radial-gradient(900px circle at 90% 0%, #fef3c7 0%, transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f6 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.08);
  --shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 32px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 24px 48px rgba(15, 23, 42, 0.16);

  /* Spacing */
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 18px;
}

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

html, body {
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--gradient-canvas);
  color: var(--dark);
  line-height: 1.6;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

#root {
  min-height: 100vh;
}

.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
}

.app-shell__text {
  font-weight: 600;
  color: var(--dark-light);
}

.no-js .app-shell {
  display: none;
}

.js .prerender-content {
  display: none;
}

.prerender-content {
  max-width: 980px;
  margin: 2.5rem auto 4rem;
  padding: 2.5rem 2rem 3rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 1.25rem;
}

.prerender-content ul,
.prerender-content ol {
  display: grid;
  gap: 0.5rem;
}

.prerender-content nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.prerender-content a {
  font-weight: 600;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  color: var(--dark);
}

h1 {
  font-size: 2rem;
  line-height: 1.2;
}

h2 {
  font-size: 1.5rem;
  line-height: 1.3;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.4;
}

p {
  color: var(--dark-light);
}

ul {
  padding-left: 1.25rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--primary-dark);
}

/* Layout */
.app-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
  padding: 2.5rem 2rem 3.5rem;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  animation: fade-up 0.5s ease;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .main-content {
    animation: none;
  }

  .grid > * {
    animation: none;
  }
}

/* Cards */
.card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1rem;
}

.card-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.15rem;
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

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

.btn-secondary {
  background: var(--surface-muted);
  color: var(--dark);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  background: var(--light);
}

.btn-danger {
  background: var(--danger);
  color: var(--white);
}

.btn-success {
  background: var(--success);
  color: var(--white);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn:focus-visible {
  outline: 3px solid rgba(29, 78, 216, 0.3);
  outline-offset: 2px;
}

/* Forms */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark);
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.95);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.2);
}

.form-error {
  color: var(--danger);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

/* Grid */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid > * {
  animation: fade-up 0.45s ease both;
}

.grid > *:nth-child(2) {
  animation-delay: 0.06s;
}

.grid > *:nth-child(3) {
  animation-delay: 0.12s;
}

.grid > *:nth-child(4) {
  animation-delay: 0.18s;
}

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

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Scores */
.score-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  border: 1px solid var(--line);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.score-high {
  background: rgba(22, 163, 74, 0.12);
  color: var(--success);
}

.score-medium {
  background: rgba(217, 119, 6, 0.12);
  color: var(--warning);
}

.score-low {
  background: rgba(220, 38, 38, 0.12);
  color: var(--danger);
}

/* Tables */
.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.table th,
.table td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.table th {
  font-weight: 700;
  color: var(--dark-light);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--surface-muted);
}

.table tr:hover {
  background: rgba(29, 78, 216, 0.04);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.badge-success {
  background: rgba(22, 163, 74, 0.12);
  color: var(--success);
  border-color: rgba(22, 163, 74, 0.2);
}

.badge-warning {
  background: rgba(217, 119, 6, 0.12);
  color: var(--warning);
  border-color: rgba(217, 119, 6, 0.2);
}

.badge-danger {
  background: rgba(220, 38, 38, 0.12);
  color: var(--danger);
  border-color: rgba(220, 38, 38, 0.2);
}

.badge-info {
  background: rgba(2, 132, 199, 0.12);
  color: var(--info);
  border-color: rgba(2, 132, 199, 0.2);
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--line);
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

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

.navbar-wordmark {
  height: 84px;
  width: auto;
  display: block;
  object-fit: contain;
}

.navbar-brand svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.navbar-nav {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.nav-link {
  color: var(--dark-light);
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: 9999px;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(29, 78, 216, 0.08);
  border-color: rgba(29, 78, 216, 0.18);
}

@media (max-width: 900px) {
  .navbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .navbar-nav {
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
  }
}

/* Auth pages */
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  background: radial-gradient(1200px circle at 0% 0%, #dbeafe 0%, transparent 45%),
    radial-gradient(900px circle at 100% 20%, #fef3c7 0%, transparent 40%),
    #eef2f6;
}

.auth-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--line);
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.auth-logo {
  width: 96px;
  height: auto;
  margin: 0 auto 0.75rem;
}

.auth-logo--solo {
  width: 300px;
  margin-bottom: 1rem;
}

.auth-subtitle {
  color: var(--dark-light);
}

/* Alerts */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.alert-error {
  background: rgba(220, 38, 38, 0.1);
  color: var(--danger);
  border-color: rgba(220, 38, 38, 0.3);
}

.alert-success {
  background: rgba(22, 163, 74, 0.1);
  color: var(--success);
  border-color: rgba(22, 163, 74, 0.3);
}

.alert-warning {
  background: rgba(217, 119, 6, 0.1);
  color: var(--warning);
  border-color: rgba(217, 119, 6, 0.3);
}

/* Spinner */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem;
}

/* Profile */
.profile-page {
  max-width: 880px;
}

.profile-title {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.profile-plan {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.96) 55%, rgba(15, 118, 110, 0.45) 100%);
  color: var(--white);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow-lg);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.profile-plan::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at 15% -10%, rgba(59, 130, 246, 0.35), transparent 60%),
    radial-gradient(500px circle at 90% 20%, rgba(14, 116, 144, 0.35), transparent 58%);
  opacity: 0.7;
  pointer-events: none;
}

.profile-plan > * {
  position: relative;
  z-index: 1;
}

.profile-plan__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.profile-plan__title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile-plan__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--plan-accent, var(--primary-light));
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.25);
  font-size: 1.2rem;
}

.profile-plan h2 {
  margin: 0;
  color: var(--white);
}

.profile-plan__label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(226, 232, 240, 0.7);
  margin-bottom: 0.35rem;
}

.profile-plan__limits {
  text-align: right;
  color: rgba(226, 232, 240, 0.86);
}

.profile-plan__limit-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-weight: 600;
}

.profile-plan__usage {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.65rem;
}

.profile-plan__usage-text {
  color: rgba(226, 232, 240, 0.9);
  font-weight: 600;
}

.profile-plan__meter {
  height: 8px;
  background: rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.profile-plan__meter span {
  display: block;
  height: 100%;
  width: var(--usage, 0%);
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.9), rgba(45, 212, 191, 0.9));
  border-radius: inherit;
  transition: width 0.3s ease;
}

.profile-plan__meter--infinite {
  padding: 0.4rem 0.75rem;
  height: auto;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.35);
  color: rgba(226, 232, 240, 0.85);
  font-size: 0.85rem;
  font-weight: 600;
}

.profile-plan__cta {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(148, 163, 184, 0.2);
  display: grid;
  gap: 0.35rem;
}

.profile-plan__cta p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.78);
}

.profile-plans {
  margin-bottom: 2rem;
}

.profile-plans__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.profile-plans__intro p {
  margin: 0.4rem 0 0;
  color: var(--dark-light);
}

.profile-plans__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.profile-plan-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.profile-plan-card.current {
  border-color: rgba(29, 78, 216, 0.3);
  background: rgba(248, 250, 252, 0.9);
}

.profile-plan-card.highlighted {
  box-shadow: var(--shadow-sm);
}

.profile-plan-description {
  margin: 0.35rem 0 0;
  color: var(--dark-light);
  font-size: 0.9rem;
}

.profile-plan-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
}

.profile-plan-price small {
  margin-left: 0.2rem;
  font-size: 0.85rem;
  color: var(--dark-light);
  font-weight: 500;
}

.profile-plan-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  color: var(--dark-light);
  font-size: 0.9rem;
}

.profile-plan-actions {
  margin-top: auto;
  display: grid;
  gap: 0.5rem;
}

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

.profile-plan-portal {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.profile-plan-portal p {
  margin: 0.35rem 0 0;
  color: var(--dark-light);
}

.profile-referral {
  margin-bottom: 2rem;
}

.profile-referral__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.profile-referral__header p {
  margin: 0.4rem 0 0;
  color: var(--dark-light);
}

.profile-referral__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.profile-referral__input {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.profile-referral__input .form-input {
  flex: 1;
}

.profile-referral__toast {
  margin-top: 1rem;
}

.profile-divider {
  margin: 1.5rem 0;
  border: none;
  border-top: 1px solid var(--light);
}

.profile-section-title {
  margin-bottom: 1rem;
}

.profile-meta {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--dark-light);
}

.profile-meta__item {
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface-muted);
}

.profile-meta__item strong {
  color: var(--dark);
}

@media (max-width: 720px) {
  .profile-title {
    font-size: 1.9rem;
  }

  .profile-plan__limits {
    text-align: left;
  }

  .profile-plans__header {
    align-items: flex-start;
  }

  .profile-referral__grid {
    grid-template-columns: 1fr;
  }

  .profile-meta {
    grid-template-columns: 1fr;
  }
}

/* Stats cards */
.stat-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.stat-icon-primary {
  background: rgba(29, 78, 216, 0.12);
  color: var(--primary);
}

.stat-icon-success {
  background: rgba(22, 163, 74, 0.12);
  color: var(--success);
}

.stat-icon-warning {
  background: rgba(217, 119, 6, 0.12);
  color: var(--warning);
}

.stat-icon-danger {
  background: rgba(220, 38, 38, 0.12);
  color: var(--danger);
}

.stat-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--dark);
}

.stat-content p {
  color: var(--dark-light);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* Landing */
.landing-page {
  min-height: 100vh;
  padding: 2.5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  background: #f5f7fb;
}

.landing-page::before,
.landing-page::after {
  content: none;
}

.landing-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.landing-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.landing-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.landing-logo {
  width: 280px;
  height: auto;
  display: block;
  background-color: transparent;
}

.landing-nav-link {
  padding: 0.55rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.landing-nav-link:hover {
  background: var(--white);
  color: var(--primary-dark);
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.landing-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  background: rgba(15, 118, 110, 0.12);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-hero h1 {
  font-size: clamp(2.3rem, 3.4vw, 3.6rem);
  margin: 1rem 0;
}

.landing-hero p {
  font-size: 1.05rem;
}

.landing-subcopy {
  margin-top: 0.75rem;
  color: var(--dark-light);
}

.landing-highlights {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.landing-highlight {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.85);
}

.landing-highlight-title {
  font-weight: 700;
  color: var(--dark);
}

.landing-highlight-text {
  font-size: 0.92rem;
  color: var(--dark-light);
}

.landing-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.landing-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.landing-metric {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
}

.landing-metric-value {
  font-weight: 700;
  color: var(--dark);
}

.landing-metric-label {
  font-size: 0.85rem;
  color: var(--dark-light);
}

.landing-hero-card {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
}

.landing-hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.landing-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-light);
}

.landing-hero-card h3 {
  margin-top: 0.35rem;
}

.landing-score {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.landing-score span {
  font-size: 1.6rem;
  line-height: 1;
}

.landing-score small {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.landing-hero-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.landing-hero-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.06);
  font-weight: 600;
  font-size: 0.95rem;
}

.landing-hero-value {
  color: var(--dark);
}

.landing-hero-footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--dark-light);
  font-size: 0.9rem;
}

.landing-section-header {
  max-width: 680px;
  margin-bottom: 1.75rem;
}

.landing-grid {
  gap: 1.5rem;
}

.landing-feature {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 190px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.landing-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.landing-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(29, 78, 216, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-feature-icon svg {
  width: 20px;
  height: 20px;
}

.landing-plans {
  display: grid;
  gap: 2rem;
}

.landing-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.landing-plan-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.landing-plan-card.highlighted {
  border-color: rgba(29, 78, 216, 0.3);
  box-shadow: var(--shadow);
}

.landing-plan-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.landing-plan-title {
  font-size: 1.25rem;
  margin: 0;
}

.landing-plan-description {
  margin: 0.35rem 0 0;
  color: var(--dark-light);
  font-size: 0.95rem;
}

.landing-plan-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29, 78, 216, 0.12);
  color: var(--primary);
}

.landing-plan-icon svg {
  width: 20px;
  height: 20px;
}

.landing-plan-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
}

.landing-plan-price small {
  margin-left: 0.2rem;
  font-size: 0.9rem;
  color: var(--dark-light);
  font-weight: 500;
}

.landing-plan-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
  color: var(--dark-light);
  font-size: 0.95rem;
}

.landing-plan-cta {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.landing-cta {
  padding: 2rem 2.25rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.landing-referral-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 2.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.12), rgba(15, 118, 110, 0.12));
  box-shadow: var(--shadow-sm);
}

.landing-referral-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: start;
}

.landing-referral-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.landing-referral-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.landing-referral-badge {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 700;
  color: var(--primary);
  box-shadow: var(--shadow);
  justify-self: end;
  align-self: start;
  animation: referral-float 3.5s ease-in-out infinite;
}

.landing-referral-badge span {
  font-size: 2rem;
  line-height: 1;
}

.landing-referral-badge small {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark-light);
  margin-top: 0.35rem;
}

.landing-referral-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}

.landing-referral-step {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.landing-referral-step h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.landing-referral-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--dark-light);
}

.landing-referral-step-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(29, 78, 216, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.landing-referral-step-icon svg {
  width: 18px;
  height: 18px;
}

.landing-referral h2 {
  margin-top: 0.75rem;
}

.landing-referral p {
  margin-top: 0.75rem;
}

.landing-referral p + p {
  margin-top: 0.5rem;
}

.landing-referral-legal {
  font-size: 0.9rem;
  color: var(--dark-light);
}

.landing-contact {
  margin-top: 2.5rem;
}

.landing-contact-card {
  padding: 2rem;
}

.landing-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.landing-contact-grid .form-group {
  margin-bottom: 0;
}

.landing-contact-grid .form-group.full {
  grid-column: 1 / -1;
}

.landing-contact-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.landing-contact-note {
  color: var(--dark-light);
  font-size: 0.95rem;
}

.landing-page .btn-primary {
  background: var(--primary);
}

.landing-page .btn-primary:hover {
  background: var(--primary-dark);
}

.landing-cta h2 {
  font-size: 1.8rem;
}

.landing-cta p {
  margin-top: 0.5rem;
  max-width: 520px;
}

@media (max-width: 960px) {
  .landing-hero {
    grid-template-columns: 1fr;
  }

  .landing-referral-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .landing-referral-badge {
    justify-self: start;
  }
}

@media (max-width: 768px) {
  .landing-page {
    padding: 2rem 1.25rem 3.5rem;
  }

  .landing-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-nav-actions,
  .landing-plan-cta {
    width: 100%;
  }

  .landing-actions .btn,
  .landing-cta .btn,
  .landing-plan-cta .btn,
  .landing-referral-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .landing-contact-grid {
    grid-template-columns: 1fr;
  }

  .landing-contact-actions {
    width: 100%;
  }

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

@keyframes referral-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-referral-badge {
    animation: none;
  }
}

/* Footer */
.app-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 2rem;
  color: var(--dark-light);
  font-size: 0.9rem;
}

.app-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.app-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.app-footer__credit {
  color: var(--dark-light);
  font-size: 0.9rem;
}

.app-footer__credit a {
  color: var(--dark);
  font-weight: 600;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  z-index: 2000;
}

.cookie-banner__content {
  max-width: 640px;
}

.cookie-banner__content p {
  margin-top: 0.35rem;
  color: var(--dark-light);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-end;
  }
}

/* ========================================
   PRICING PAGE
   ======================================== */

.pricing-page {
  min-height: 100vh;
  background: var(--light);
  padding: 2rem 1rem 4rem;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-back {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--dark-light);
  text-decoration: none;
  font-size: 0.9rem;
}

.pricing-back:hover {
  color: var(--primary);
}

.pricing-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.pricing-header > p {
  color: var(--dark-light);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.pricing-header-actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.billing-toggle {
  display: inline-flex;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.25rem;
  gap: 0.25rem;
}

.billing-option {
  padding: 0.6rem 1.25rem;
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-light);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.billing-option.active {
  background: var(--primary);
  color: white;
}

.billing-badge {
  background: var(--success);
  color: white;
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

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

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

.pricing-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.2s;
}

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

.pricing-card.highlighted {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-light);
}

.pricing-card.current {
  border-color: var(--success);
}

.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.pricing-badge.current-badge {
  background: var(--success);
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-icon {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.pricing-card-header h2 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.pricing-description {
  color: var(--dark-light);
  font-size: 0.85rem;
}

.pricing-price {
  text-align: center;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.25rem;
}

.price-amount {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--dark);
}

.price-period {
  font-size: 1rem;
  color: var(--dark-light);
}

.price-monthly-equivalent {
  font-size: 0.8rem;
  color: var(--dark-light);
  margin-top: 0.25rem;
}

.pricing-limits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
}

.limit-item {
  padding: 0.4rem 0.6rem;
  background: var(--light);
  border-radius: var(--radius-sm);
  text-align: center;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.85rem;
}

.pricing-features li.excluded {
  color: var(--dark-light);
  opacity: 0.6;
}

.feature-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.feature-icon.check {
  color: var(--success);
}

.feature-icon.x {
  color: var(--dark-light);
}

.pricing-cta {
  margin-top: auto;
}

.pricing-cta .btn {
  width: 100%;
  justify-content: center;
}

/* FAQ Section */
.pricing-faq {
  max-width: 800px;
  margin: 0 auto 4rem;
}

.pricing-faq h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 1.1rem;
  color: var(--dark-light);
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item summary:focus-visible {
  outline: 2px solid rgba(29, 78, 216, 0.4);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.faq-item p {
  padding: 1rem 1.25rem 1.25rem;
  color: var(--dark-light);
  font-size: 0.9rem;
  margin: 0;
}

/* Combined CTA Section */
.pricing-combined {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.pricing-combined-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-combined-card h2 {
  margin-bottom: 0;
}

.pricing-combined-card p {
  color: var(--dark-light);
  margin: 0;
}

.pricing-combined-card > .btn {
  margin-top: 1rem;
}

.pricing-combined-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Toasts */
.toast-stack {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 2000;
}

.toast {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--info);
  box-shadow: var(--shadow);
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  min-width: 260px;
  max-width: 340px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--dark);
}

.toast--success {
  border-left-color: var(--success);
}

.toast--error {
  border-left-color: var(--danger);
}

.toast--warning {
  border-left-color: var(--warning);
}

.toast__close {
  background: transparent;
  border: none;
  color: var(--dark-light);
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

@media (max-width: 600px) {
  .toast-stack {
    left: 1rem;
    right: 1rem;
  }

  .toast {
    max-width: none;
  }
}

/* Offline banner */
.offline-banner {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  z-index: 1900;
}

/* Skeletons */
.skeleton-block {
  position: relative;
  overflow: hidden;
  background: #e2e8f0;
  border-radius: 8px;
  height: 12px;
}

.skeleton-block::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: skeleton-wave 1.4s infinite;
}

.skeleton-line {
  height: 12px;
}

.skeleton-pill {
  height: 18px;
  width: 80px;
  border-radius: 999px;
}

@keyframes skeleton-wave {
  100% {
    transform: translateX(100%);
  }
}

/* Responsive Table - Mobile Cards */
@media (max-width: 768px) {
  .table-responsive-cards thead {
    display: none;
  }

  .table-responsive-cards,
  .table-responsive-cards tbody,
  .table-responsive-cards tr {
    display: block;
    width: 100%;
  }

  .table-responsive-cards tr {
    margin-bottom: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    padding: 0.75rem;
  }

  .table-responsive-cards tr:hover {
    background: var(--surface);
  }

  .table-responsive-cards td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--line);
    text-align: right;
  }

  .table-responsive-cards td:last-child {
    border-bottom: none;
    padding-top: 0.75rem;
    justify-content: center;
  }

  .table-responsive-cards td::before {
    content: attr(data-label);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--dark-light);
    text-align: left;
    flex-shrink: 0;
    margin-right: 1rem;
  }

  .table-responsive-cards td:last-child::before {
    display: none;
  }

  .table-responsive-cards td .btn {
    width: 100%;
    justify-content: center;
  }

  /* URL cell special handling */
  .table-responsive-cards td[data-label="URL"] {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .table-responsive-cards td[data-label="URL"]::before {
    margin-right: 0;
  }

  .table-responsive-cards td[data-label="URL"] {
    word-break: break-all;
    text-align: left;
  }

  /* Score badge smaller in mobile cards */
  .table-responsive-cards .score-badge {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }
}
