/* ============================================
   COMPONENTS
   ============================================ */

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--t-base);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

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

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--gradient-aurora);
  color: #0b0a1e;
  box-shadow: var(--shadow-button);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(167, 139, 250, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-glass {
  background: var(--bg-card);
  color: var(--text-primary);
  border-color: var(--border-default);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
}

.btn-ghost {
  color: var(--text-secondary);
  background: transparent;
}

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

/* ===== Tools grid ===== */
.category-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.chip {
  padding: 9px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--t-base);
}

.chip:hover {
  border-color: var(--border-strong);
  color: var(--text-primary);
}

.chip-active {
  background: var(--gradient-aurora);
  color: #0b0a1e;
  border-color: transparent;
  font-weight: 600;
}

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

.tool-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all var(--t-base);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-aurora-soft);
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
}

.tool-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-3px);
}

.tool-card:hover::before {
  opacity: 1;
}

.tool-card > * {
  position: relative;
  z-index: 1;
}

.tool-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  background: var(--gradient-aurora-soft);
  color: var(--c-purple);
  border: 1px solid var(--border-glow);
}

.tool-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.tool-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.tool-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.tool-price {
  color: var(--c-cyan);
  font-weight: 600;
  font-family: var(--font-mono);
}

.tool-tag {
  padding: 3px 9px;
  background: rgba(167, 139, 250, 0.12);
  color: var(--c-purple);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tools-footer {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.tools-footer p {
  font-size: 17px;
  color: var(--text-secondary);
}

.tools-footer strong {
  color: var(--text-primary);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.feature-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all var(--t-base);
}

.feature-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gradient-aurora);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #0b0a1e;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(167, 139, 250, 0.3);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== Steps ===== */
.steps {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  flex: 1;
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  text-align: center;
  backdrop-filter: blur(10px);
}

.step-number {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--c-cyan);
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-weight: 600;
}

.step p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-arrow {
  display: flex;
  align-items: center;
  color: var(--c-purple);
  font-size: 24px;
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-grid-single {
  max-width: 420px;
}

.pricing-card {
  position: relative;
  padding: 36px 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all var(--t-base);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
}

.pricing-card-featured {
  background: linear-gradient(135deg, rgba(167,139,250,0.1), rgba(34,211,238,0.05));
  border: 2px solid var(--c-purple);
  box-shadow: 0 0 60px rgba(167, 139, 250, 0.2);
  transform: scale(1.03);
}

.pricing-card-featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  background: var(--gradient-aurora);
  color: #0b0a1e;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-button);
}

.pricing-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-weight: 600;
}

.pricing-header p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 28px;
  font-family: var(--font-display);
  color: var(--text-primary);
}

.price-currency {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-secondary);
}

.price-amount {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-period {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 6px;
}

.pricing-features {
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-secondary);
}

.pricing-features li .check-svg {
  width: 18px;
  height: 18px;
  color: var(--c-cyan);
  flex-shrink: 0;
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.testimonial {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all var(--t-base);
}

.testimonial:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.stars {
  display: flex;
  gap: 2px;
  color: #fbbf24;
  font-size: 16px;
  margin-bottom: 16px;
}

.testimonial > p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

.avatar-1 { background: linear-gradient(135deg, #f472b6, #a78bfa); }
.avatar-2 { background: linear-gradient(135deg, #22d3ee, #6366f1); }
.avatar-3 { background: linear-gradient(135deg, #fbbf24, #f472b6); }
.avatar-4 { background: linear-gradient(135deg, #34d399, #22d3ee); }
.avatar-5 { background: linear-gradient(135deg, #a78bfa, #34d399); }
.avatar-6 { background: linear-gradient(135deg, #f472b6, #fbbf24); }

.author-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 15px;
}

.author-title {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: border-color var(--t-base);
}

.faq-item[open] {
  border-color: var(--border-glow);
}

.faq-item summary {
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  list-style: none;
  transition: color var(--t-fast);
}

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

.faq-item summary i {
  color: var(--c-purple);
  font-size: 22px;
  transition: transform var(--t-base);
}

.faq-item[open] summary i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 22px;
}

.faq-answer p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== Final CTA ===== */
.final-cta {
  padding: 80px 0 100px;
}

.cta-card {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(167,139,250,0.12), rgba(34,211,238,0.08));
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(167,139,250,0.15) 0%, transparent 50%);
  animation: rotate 20s linear infinite;
}

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

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.05;
}

.cta-card p {
  font-size: 19px;
  color: var(--text-secondary);
  margin-bottom: 36px;
}

/* ===== Footer ===== */
.footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand p {
  margin: 16px 0 24px;
  color: var(--text-muted);
  font-size: 15px;
  max-width: 320px;
  line-height: 1.6;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 18px;
  transition: all var(--t-base);
}

.socials a:hover {
  background: var(--gradient-aurora);
  color: #0b0a1e;
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  color: var(--text-muted);
  font-size: 15px;
  transition: color var(--t-fast);
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-faint);
}

/* ===== Tools List Layout (Image 2-5 style) ===== */
.tools-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.tools-list-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
}

.tools-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tools-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--t-fast);
}

.tools-list li:last-child {
  border-bottom: none;
}

.tools-list li:hover {
  padding-left: 6px;
}

.tl-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tl-name em {
  font-style: normal;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}

.tl-name::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient-aurora);
  flex-shrink: 0;
}

.tl-save {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  font-family: var(--font-mono);
  background: linear-gradient(90deg, #34d399, #22d3ee);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tl-save em {
  font-style: normal;
  font-size: 12px;
  color: var(--text-muted);
}

.tl-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.tl-badge-orange {
  background: rgba(251, 146, 60, 0.15);
  color: #fb923c;
  border: 1px solid rgba(251, 146, 60, 0.3);
}

.tl-badge-green {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.tl-more {
  padding: 16px 0 4px !important;
  border-bottom: none !important;
  justify-content: center !important;
}

.tl-more span {
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
}

/* ===== Sticky pricing card ===== */
.tools-pricing-sticky {
  position: sticky;
  top: 90px;
}

.sticky-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-glow);
}

.sticky-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.sticky-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
}

.sticky-tabs {
  display: flex;
  gap: 0;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 16px;
  border: 1px solid var(--border-default);
}

.stab {
  flex: 1;
  padding: 8px 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: all var(--t-base);
  cursor: pointer;
  background: transparent;
  border: none;
}

.stab-active {
  background: var(--gradient-aurora);
  color: #0b0a1e;
  font-weight: 600;
}

.sticky-plans {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.sticky-plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: border-color var(--t-fast);
  gap: 8px;
}

.sticky-plan i,
.sticky-plan .check-svg {
  color: var(--c-cyan);
  font-size: 18px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.sticky-plan-active {
  border-color: var(--c-cyan);
  color: var(--text-primary);
  background: rgba(34, 211, 238, 0.06);
}

.sticky-meta {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.sticky-meta i {
  color: var(--c-cyan);
  font-size: 16px;
}

/* ===== Savings + Bonus + Compare section ===== */
.savings-wrap {
  max-width: 820px;
  margin: 0 auto 56px;
}

.bonus-block {
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  backdrop-filter: blur(10px);
}

.bonus-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.bonus-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--text-secondary);
}

.bonus-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #22c55e;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.4);
}

.bonus-check svg {
  width: 16px;
  height: 16px;
}

.bonus-cta {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Comparison table */
.compare-wrap {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.compare-table thead tr {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border-default);
}

.compare-table th {
  padding: 18px 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.compare-table th:first-child {
  text-align: left;
  width: 55%;
}

.col-ecom {
  color: var(--c-cyan) !important;
}

.compare-badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--gradient-aurora);
  color: #0b0a1e;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.compare-table tbody tr {
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--t-fast);
}

.compare-table tbody tr:last-child {
  border-bottom: none;
}

.compare-table tbody tr:hover {
  background: rgba(255,255,255,0.02);
}

.compare-table td {
  padding: 16px 24px;
  color: var(--text-secondary);
  text-align: center;
  font-size: 15px;
}

.compare-table td:first-child {
  text-align: left;
  color: var(--text-primary);
  font-weight: 500;
}

.tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
}

.tick svg {
  width: 18px;
  height: 18px;
}

.tick-yes {
  background: #22c55e;
  color: #ffffff;
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.4);
}

.tick-no {
  background: #ef4444;
  color: #ffffff;
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.35);
}

/* Mobile */
@media (max-width: 768px) {
  .bonus-block {
    padding: 22px 18px;
  }

  .bonus-title {
    font-size: 17px;
  }

  .bonus-list li {
    font-size: 15px;
  }

  .compare-table th,
  .compare-table td {
    padding: 13px 14px;
    font-size: 14px;
  }

  .tick {
    width: 28px;
    height: 28px;
  }

  .tick svg {
    width: 15px;
    height: 15px;
  }

  .compare-badge {
    font-size: 11px;
    padding: 4px 10px;
  }
}

/* ============================================
   INNER PAGES (about, blog, legal, etc.)
   ============================================ */
.page-hero {
  padding: 90px 0 60px;
  text-align: center;
  position: relative;
}

.page-hero .kicker {
  margin-bottom: 14px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 18px;
}

.page-hero .lede {
  max-width: 640px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.page-body {
  padding: 40px 0 100px;
}

/* Generic prose container for legal / docs pages */
.prose {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16.5px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin: 48px 0 14px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 32px 0 10px;
}

.prose p {
  margin: 0 0 16px;
}

.prose ul,
.prose ol {
  margin: 0 0 18px 22px;
  padding: 0;
}

.prose li {
  margin: 8px 0;
}

.prose a {
  color: var(--c-cyan);
  border-bottom: 1px dashed rgba(34, 211, 238, 0.45);
  transition: color var(--t-fast);
}

.prose a:hover {
  color: var(--c-purple);
}

.prose strong {
  color: var(--text-primary);
  font-weight: 600;
}

.prose .meta {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-subtle);
}

/* ===== Blog grid ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card);
}

.blog-thumb {
  height: 160px;
  background: var(--gradient-aurora-soft);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(167, 139, 250, 0.35), transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(34, 211, 238, 0.3), transparent 60%);
}

.blog-thumb span {
  position: relative;
  z-index: 1;
  padding: 6px 14px;
  background: rgba(7, 6, 26, 0.6);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-pill);
}

.blog-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-date {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.blog-excerpt {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 4px;
}

.blog-readmore {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-cyan);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== Changelog timeline ===== */
.changelog {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.changelog::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--c-purple), transparent);
  opacity: 0.45;
}

.change-entry {
  position: relative;
  padding: 0 0 40px 50px;
}

.change-entry::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gradient-aurora);
  box-shadow: 0 0 18px rgba(167, 139, 250, 0.55);
  border: 3px solid var(--bg-base);
}

.change-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.change-version {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.change-date {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.change-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.change-tag-new {
  background: rgba(34, 197, 94, 0.15);
  color: #34d399;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.change-tag-fix {
  background: rgba(251, 146, 60, 0.15);
  color: #fb923c;
  border: 1px solid rgba(251, 146, 60, 0.3);
}

.change-tag-improve {
  background: rgba(34, 211, 238, 0.15);
  color: var(--c-cyan);
  border: 1px solid rgba(34, 211, 238, 0.3);
}

.change-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.change-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.change-list li {
  padding-left: 18px;
  position: relative;
  margin: 6px 0;
}

.change-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--c-purple);
}

/* ===== About — value cards ===== */
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 60px auto 0;
}

.about-stat {
  text-align: center;
  padding: 28px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
}

.about-stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.about-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: all var(--t-base);
}

.value-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--gradient-aurora-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--c-purple);
  margin-bottom: 14px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.value-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ===== Affiliates / tiers ===== */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  text-align: center;
}

.tier-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tier-rate {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}

.tier-rate span {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 2px;
}

.tier-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 10px;
}

.tier-card-featured {
  background: linear-gradient(135deg, rgba(167,139,250,0.12), rgba(34,211,238,0.06));
  border: 1.5px solid var(--c-purple);
  box-shadow: 0 0 40px rgba(167, 139, 250, 0.18);
}

/* ===== Contact ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
}

.contact-item i {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--gradient-aurora-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--c-purple);
}

.contact-item h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-item a:hover {
  color: var(--c-cyan);
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(7, 6, 26, 0.4);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  transition: border var(--t-fast);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--c-purple);
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
}

@media (max-width: 820px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .page-hero {
    padding: 60px 0 40px;
  }
  .page-body {
    padding: 24px 0 64px;
  }
  .change-entry {
    padding-left: 38px;
  }
}

/* ============================================
   MOBILE FIXED BOTTOM CTA (like the lovable ref)
   ============================================ */
.mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 60;
    padding: 12px 14px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    background: rgba(7, 6, 26, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-top: 1px solid var(--border-default);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
  }

  .mobile-cta-price {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    line-height: 1.1;
  }

  .mobile-cta-price small {
    display: block;
    font-size: 10.5px;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 2px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .mobile-cta .btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 14.5px;
  }
}

/* ============================================
   AUTH + DASHBOARD PAGES
   ============================================ */
.auth-wrap {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  padding: 40px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card);
}

.auth-card .logo {
  justify-content: center;
  margin-bottom: 28px;
  font-size: 20px;
}

.auth-card h1 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 6px;
}

.auth-card .auth-sub {
  text-align: center;
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.auth-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.auth-form input {
  width: 100%;
  padding: 12px 14px;
  background: rgba(7, 6, 26, 0.4);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  transition: border var(--t-fast);
}

.auth-form input:focus {
  outline: none;
  border-color: var(--c-purple);
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.15);
}

.auth-form button[type="submit"] {
  padding: 14px;
  margin-top: 6px;
}

.auth-msg {
  font-size: 13.5px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  display: none;
}

.auth-msg.show {
  display: block;
}

.auth-msg.error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.auth-msg.success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
}

.auth-foot {
  text-align: center;
  margin-top: 22px;
  font-size: 14px;
  color: var(--text-muted);
}

.auth-foot a {
  color: var(--c-cyan);
  font-weight: 600;
}

.auth-foot a:hover {
  color: var(--c-purple);
}

/* ===== Dashboard ===== */
.dash-wrap {
  padding: 60px 24px 100px;
  max-width: 880px;
  margin: 0 auto;
}

.dash-hello {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.dash-hello h1 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.dash-hello p {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-top: 4px;
}

.dash-logout {
  font-size: 14px;
  padding: 9px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-default);
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  cursor: pointer;
}

.dash-logout:hover {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.35);
  color: #fca5a5;
}

.dash-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
}

.dash-card-paid {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.10), rgba(34, 211, 238, 0.06));
  border: 1.5px solid rgba(34, 197, 94, 0.4);
  box-shadow: 0 0 50px rgba(34, 197, 94, 0.15);
}

.dash-card-locked {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.10), rgba(34, 211, 238, 0.06));
  border: 1.5px solid var(--c-purple);
  box-shadow: 0 0 50px rgba(167, 139, 250, 0.18);
}

.dash-card .dash-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: var(--radius-lg);
  background: var(--gradient-aurora-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-card .dash-icon svg {
  width: 32px;
  height: 32px;
  color: var(--c-purple);
}

.dash-card h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.dash-card p {
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.55;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.dash-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 480px;
  margin: 0 auto 22px;
}

.dash-plan {
  padding: 18px 16px;
  background: rgba(7, 6, 26, 0.4);
  border: 1.5px solid var(--border-default);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: center;
  transition: all var(--t-fast);
}

.dash-plan:hover {
  border-color: var(--border-strong);
}

.dash-plan.active {
  border-color: var(--c-purple);
  background: rgba(167, 139, 250, 0.08);
  box-shadow: 0 0 18px rgba(167, 139, 250, 0.2);
}

.dash-plan-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.dash-plan-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.dash-plan-price small {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 2px;
}

.dash-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
}

@media (max-width: 600px) {
  .auth-card {
    padding: 32px 24px;
  }
  .dash-card {
    padding: 28px 22px;
  }
  .dash-plans {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   RAZORPAY INLINE BUTTON (in pricing card)
   ============================================ */
.rzp-inline {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.rzp-inline form {
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.rzp-inline form > *:not(script) {
  width: 100% !important;
  max-width: 100% !important;
}

/* ============================================
   INLINE SVG ICON SIZING (replaces Tabler icons)
   ============================================ */
.icon-svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.socials a .icon-svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   80+ Tools Included highlight badge — sits ABOVE the tools list
   ============================================ */
.tools-list-wrap > .tools-included-badge {
  display: flex;
  margin: 0 auto 22px;
  width: max-content;
  max-width: 100%;
}
.tools-included-badge {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(168, 124, 255, 0.22), rgba(95, 213, 255, 0.22));
  border: 1.5px solid transparent;
  background-clip: padding-box;
  position: relative;
  color: #fff;
  margin-bottom: 22px;
  box-shadow:
    0 0 0 1px rgba(168, 124, 255, 0.45) inset,
    0 8px 28px -8px rgba(168, 124, 255, 0.55);
  animation: tools-badge-glow 3s ease-in-out infinite;
}

.tools-included-badge::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, #a87cff, #5fd5ff);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.tools-included-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5fd5ff;
  box-shadow: 0 0 8px #5fd5ff, 0 0 16px rgba(95, 213, 255, 0.6);
  display: inline-block;
}

@keyframes tools-badge-glow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(168, 124, 255, 0.35) inset, 0 6px 24px -8px rgba(168, 124, 255, 0.45); }
  50%      { box-shadow: 0 0 0 1px rgba(95, 213, 255, 0.55) inset, 0 8px 32px -6px rgba(95, 213, 255, 0.55); }
}

/* Hero "80+ TOOLS INCLUDED" badge — between H1 and subtitle, centered, with proper spacing */
.hero-included-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 20px auto 24px;
  font-size: 15px;
  padding: 12px 26px;
  width: max-content;
  max-width: 100%;
}

/* ============================================
   Password show/hide eye toggle (login, signup, admin)
   ============================================ */
.pw-wrap {
  position: relative;
  display: block;
}
.pw-wrap input {
  width: 100%;
  padding-right: 48px !important;
}
.pw-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  padding: 6px;
  cursor: pointer;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.pw-toggle:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}
.pw-toggle:focus {
  outline: 2px solid rgba(95, 213, 255, 0.5);
  outline-offset: 1px;
}
/* When wrap is inside an .auth-card form-row that uses margin-bottom on input,
   we need the wrap to inherit that spacing */
.auth-form .pw-wrap { margin-bottom: 0; }

/* ============================================
   Logout link below FAQ (only shown when logged in)
   ============================================ */
.footer-logout {
  text-align: center;
  margin: 24px auto 8px;
  display: none;
}
body.user-loggedin .footer-logout { display: block; }
.footer-logout button {
  background: transparent;
  border: 1px solid var(--border-default);
  color: var(--text-secondary);
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.footer-logout button:hover {
  color: #fff;
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.08);
}

/* ============================================
   Sticky plan rows — make them clickable
   ============================================ */
.sticky-plan {
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.1s;
  user-select: none;
}
.sticky-plan:hover {
  border-color: rgba(95, 213, 255, 0.5);
  background: rgba(95, 213, 255, 0.05);
}
.sticky-plan:active {
  transform: scale(0.99);
}
.sticky-plan:focus-visible {
  outline: 2px solid rgba(95, 213, 255, 0.6);
  outline-offset: 2px;
}
