/* ═══════════════════════════════════════════
   GOOGLE FONTS
═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ═══════════════════════════════════════════
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
═══════════════════════════════════════════ */
:root {
  --c-text: #171717;
  --c-text-muted: #4d4d4d;
  --c-text-subtle: #888888;
  --c-bg: #ffffff;
  --c-bg-alt: #fafafa;
  --c-bg-card: #ffffff;
  --c-border: #ebebeb;
  --c-border-mid: #d4d4d4;
  --c-border-strong: #a1a1a1;
  --c-accent: #50e3c2;
  --c-error-bg: #f7d4d6;
  --c-error-border: #ee0000;
  --c-error-text: #c50000;
  --nav-h: 56px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-full: 9999px;
  --shadow-card: 0px 2px 2px #0000000a, 0px 8px 16px -4px #0000000a;
  --shadow-btn: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-btn-hover: 0 6px 20px rgba(0, 0, 0, 0.15);
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark {
  --c-text: #ffffff;
  --c-text-muted: #888888;
  --c-text-subtle: #888888;
  --c-bg: #111111;
  --c-bg-alt: #1a1a1a;
  --c-bg-card: #111111;
  --c-border: #222222;
  --c-border-mid: #444444;
  --c-border-strong: #555555;
  --c-error-bg: #2a1010;
  --c-error-border: #ee0000;
  --c-error-text: #ff6b6b;
  --shadow-btn-hover: 0 6px 20px rgba(255, 255, 255, 0.12);
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  color: var(--c-text);
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 25%, #faf5ff 50%, #f0fdf9 75%, #f8f9ff 100%);
  background-attachment: fixed;
  min-height: 100vh;
  transition: background 0.3s ease, color 0.3s ease;
}

.dark body {
  background: linear-gradient(135deg, #0a0a0f 0%, #0d0a1a 25%, #0a0f1a 50%, #0a1a15 75%, #0a0a0f 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

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

/* ═══════════════════════════════════════════
   GRADIENT BACKGROUNDS
═══════════════════════════════════════════ */
.gradient-mesh {
  position: relative;
}

.gradient-mesh::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(139, 92, 246, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 70% 50% at 50% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.dark .gradient-mesh::before {
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(139, 92, 246, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 70% 50% at 50% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
}

.gradient-mesh>* {
  position: relative;
  z-index: 1;
}

.section-alt {
  background: transparent;
}

.dark .section-alt {
  background: transparent;
}

.section-cta {
  background: transparent;
}

.dark .section-cta {
  background: transparent;
}

.page-bg {
  background: transparent;
}

.dark .page-bg {
  background: transparent;
}

/* ═══════════════════════════════════════════
   LAYOUT HELPERS
═══════════════════════════════════════════ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-sm {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-md {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #eaeaea;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  transition: background 0.2s, border-color 0.2s;
}

@media (max-width: 400px) {
  .navbar {
    padding: 0 0.75rem;
  }

  .navbar-inner {
    gap: 0.5rem;
  }
}

.dark .navbar {
  background: rgba(0, 0, 0, 0.8);
  border-bottom-color: #111;
}

.navbar-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--c-text);
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.navbar-brand:hover {
  opacity: 0.9;
}

.navbar-brand svg {
  flex-shrink: 0;
}

.navbar-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .navbar-nav {
    display: flex;
  }
}

.navbar-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #666;
  transition: color 0.2s;
}

.dark .navbar-nav a {
  color: #a1a1a1;
}

.navbar-nav a:hover {
  color: var(--c-text);
}

.dark .navbar-nav a:hover {
  color: #fff;
}

/* Mobile dropdown menu (below 768px) */
@media (max-width: 767px) {
  .navbar-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--c-bg);
    border-bottom: 1px solid var(--c-border);
    padding: 0.5rem 1rem 1rem;
  }

  .dark .navbar-nav {
    background: #0f0f0f;
    border-color: #333;
  }

  .navbar-nav.open {
    display: flex;
  }

  .navbar-nav a {
    width: 100%;
    padding: 0.75rem 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--c-border);
  }

  .dark .navbar-nav a {
    border-color: #262626;
  }

  .navbar-nav a:last-child {
    border-bottom: none;
  }
}

/* Retrieve/Send: on mobile they only appear as plain links inside the
   dropdown (same style as Home / How it works), not in the top bar.
   On desktop they stay as buttons in the top bar, and the dropdown
   copies are hidden since the dropdown itself never shows. */
.navbar-nav-cta {
  display: none;
}

@media (max-width: 767px) {
  .navbar-nav-cta {
    display: block;
  }

  .navbar-actions-cta {
    display: none !important;
  }
}

/* Prevent any horizontal scroll on small screens */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Hamburger toggle button (hidden on desktop) */
.navbar-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  background: transparent;
  color: var(--c-text);
  cursor: pointer;
  order: -1;
}

.navbar-toggle .icon {
  width: 1.5rem;
  height: 1.5rem;
}

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

.navbar {
  position: relative;
  /* anchors the mobile dropdown */
}

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

/* Theme toggle button */
.theme-btn {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid #eaeaea;
  color: #666;
  transition: var(--transition);
  background: transparent;
}

.dark .theme-btn {
  border-color: #333;
  color: #a1a1a1;
}

.theme-btn:hover {
  background: #fafafa;
  border-color: #d4d4d4;
  color: var(--c-text);
}

.dark .theme-btn:hover {
  background: #111;
  border-color: #444;
  color: #fff;
}

.theme-btn .icon {
  width: 1rem;
  height: 1rem;
  display: block;
}

/* Small action buttons in nav */
.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0 0.875rem;
  height: 2rem;
  border-radius: var(--radius-sm);
  border: 1px solid #eaeaea;
  color: #666;
  transition: var(--transition);
  background: transparent;
}

.dark .btn-outline-sm {
  border-color: #333;
  color: #a1a1a1;
}

.btn-outline-sm:hover {
  color: var(--c-text);
  background: #fafafa;
  border-color: #d4d4d4;
}

.dark .btn-outline-sm:hover {
  color: #fff;
  background: #111;
  border-color: #444;
}

.btn-solid-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0 0.875rem;
  height: 2rem;
  border-radius: var(--radius-sm);
  background: #000;
  color: #fff;
  transition: var(--transition);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.dark .btn-solid-sm {
  background: #fff;
  color: #000;
}

.btn-solid-sm:hover {
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dark .btn-solid-sm:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* ═══════════════════════════════════════════
   BUTTONS (FULL SIZE)
═══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  font-size: 1rem;
  padding: 0 2rem;
  height: 3rem;
  border-radius: var(--radius-full);
  background: #171717;
  color: #fff;
  border: none;
  box-shadow: var(--shadow-btn);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none !important;
}

.dark .btn-primary {
  background: #fff;
  color: #171717;
}

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

.dark .btn-primary:hover {
  background: #e5e5e5;
}

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

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: var(--shadow-btn);
}

.btn-primary.full-width {
  width: 100%;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  font-size: 1rem;
  padding: 0 2rem;
  height: 3rem;
  border-radius: var(--radius-full);
  background: #fff;
  color: #171717;
  border: 1px solid var(--c-border);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none !important;
}

.dark .btn-secondary {
  background: #1a1a1a;
  color: #fff;
  border-color: #333;
}

.btn-secondary:hover {
  background: #f5f5f5;
  border-color: var(--c-border-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.dark .btn-secondary:hover {
  background: #222;
  border-color: #444;
}

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

.btn-secondary.full-width {
  width: 100%;
}

.btn-sm {
  height: 2.25rem;
  font-size: 0.875rem;
  padding: 0 1.25rem;
}

/* ═══════════════════════════════════════════
   CARDS
═══════════════════════════════════════════ */
.card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  transition: background 0.2s, border-color 0.2s;
}

/* ═══════════════════════════════════════════
   FORM ELEMENTS
═══════════════════════════════════════════ */
.input {
  width: 100%;
  height: 2.75rem;
  padding: 0 1rem;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--c-text);
  transition: border-color 0.2s;
  outline: none;
}

.input::placeholder {
  color: var(--c-text-subtle);
}

.input:focus {
  border-color: var(--c-border-strong);
}

.dark .input {
  background: #1a1a1a;
  border-color: #333;
}

.dark .input:focus {
  border-color: #555;
}

.textarea {
  width: 100%;
  height: 12rem;
  padding: 0.75rem 1rem;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--c-text);
  resize: none;
  transition: border-color 0.2s;
  outline: none;
  font-family: inherit;
}

.textarea::placeholder {
  color: var(--c-text-subtle);
}

.textarea:focus {
  border-color: var(--c-border-strong);
}

.dark .textarea {
  background: #1a1a1a;
  border-color: #333;
}

.dark .textarea:focus {
  border-color: #555;
}

.select {
  height: 2.25rem;
  padding: 0 0.75rem;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--c-text);
  outline: none;
  transition: border-color 0.2s;
  cursor: pointer;
}

.select:focus {
  border-color: var(--c-border-strong);
}

.dark .select {
  background: #1a1a1a;
  border-color: #333;
}

.dark .select:focus {
  border-color: #555;
}

/* ═══════════════════════════════════════════
   TABS
═══════════════════════════════════════════ */
.tabs-bar {
  display: flex;
  gap: 0.25rem;
  background: var(--c-bg-alt);
  border-radius: var(--radius-md);
  padding: 0.25rem;
  margin-bottom: 1.5rem;
}

.dark .tabs-bar {
  background: #1a1a1a;
}

.tab-btn {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--c-text-muted);
  transition: var(--transition);
  border: none;
  background: transparent;
  cursor: pointer;
}

.dark .tab-btn {
  color: #888;
}

.tab-btn:hover {
  color: var(--c-text);
}

.tab-btn.active {
  background: #fff;
  color: #171717;
  box-shadow: 0 1px 2px #0000000a;
  border: 1px solid #ebebeb;
}

.dark .tab-btn.active {
  background: #111111;
  color: #fff;
  border-color: #333;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* ═══════════════════════════════════════════
   DROP ZONES
═══════════════════════════════════════════ */
.drop-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 12rem;
  border: 2px dashed var(--c-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  padding: 1.5rem;
}

.dark .drop-zone {
  border-color: #333;
}

.drop-zone:hover {
  border-color: var(--c-border-strong);
  background: var(--c-bg-alt);
}

.drop-zone .drop-icon {
  width: 2rem;
  height: 2rem;
  color: var(--c-text-subtle);
  margin-bottom: 0.75rem;
}

.drop-zone p {
  font-size: 0.875rem;
  color: var(--c-text-muted);
}

.dark .drop-zone p {
  color: #888;
}

.drop-zone .highlight {
  color: var(--c-text);
  font-weight: 500;
}

.drop-zone small {
  font-size: 0.75rem;
  color: var(--c-text-subtle);
  margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════
   CODE INPUT (RETRIEVE)
═══════════════════════════════════════════ */
.code-inputs {
  display: flex;
  gap: 0.5rem;
  margin: 0 auto 1.5rem;
  max-width: 360px;
  width: 100%;
}

.code-char {
  flex: 1;
  width: 100%;
  min-width: 0;
  height: 3.5rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  color: var(--c-text);
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  outline: none;
  text-transform: uppercase;
  transition: border-color 0.2s;
}

.dark .code-char {
  background: #1a1a1a;
  border-color: #333;
}

.code-char:focus {
  border-color: var(--c-border-strong);
}

.dark .code-char:focus {
  border-color: #555;
}

/* ═══════════════════════════════════════════
   ALERTS / ERRORS
═══════════════════════════════════════════ */
.alert-error {
  display: none;
  background: var(--c-error-bg);
  border: 1px solid rgba(238, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--c-error-text);
  margin-bottom: 1rem;
}

.alert-error.visible {
  display: block;
}

.alert-success {
  display: none;
  background: rgba(80, 227, 194, 0.12);
  border: 1px solid rgba(80, 227, 194, 0.3);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--c-text);
  margin-bottom: 1rem;
}

.alert-success.visible {
  display: block;
}

/* ═══════════════════════════════════════════
   MODAL
═══════════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 1rem;
  box-sizing: border-box;
}

.modal-overlay.visible {
  display: flex;
}

.modal-box {
  position: relative;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: 0px 1px 1px #00000005, 0px 8px 16px -4px #0000000a, 0px 24px 32px -8px #0000000f;
  padding: 2rem;
  max-width: 24rem;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.modal-close-x {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--c-text-subtle);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.modal-close-x:hover {
  background: var(--c-bg-alt);
  color: var(--c-text);
}

.modal-close-x svg {
  width: 1.1rem;
  height: 1.1rem;
}

.modal-icon {
  width: 3rem;
  height: 3rem;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.modal-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--c-text);
}

.code-display {
  background: #171717;
  border-radius: var(--radius-md);
  padding: 1rem;
  margin: 1.5rem 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.dark .code-display {
  background: #1a1a1a;
  border: 1px solid #333;
}

.code-display p {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(1.25rem, 6vw, 1.875rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.15em;
  text-align: center;
  word-break: break-all;
}

/* ═══════════════════════════════════════════
   SPINNER
═══════════════════════════════════════════ */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }

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

.spinner {
  display: none;
  width: 1rem;
  height: 1rem;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
}

.spinner.visible {
  display: block;
}

/* ═══════════════════════════════════════════
   HERO (INDEX PAGE)
═══════════════════════════════════════════ */
.hero {
  padding: 2rem 1.5rem 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-full);
  padding: 0.375rem 0.75rem;
  margin-bottom: 2rem;
}

.dark .hero-badge {
  background: #1a1a1a;
  border-color: #333;
}

.hero-badge .dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--c-accent);
  flex-shrink: 0;
}

.hero-badge span {
  font-size: 0.75rem;
  color: var(--c-text-subtle);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--c-text);
  margin-bottom: 1rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.125rem;
  color: var(--c-text-muted);
  line-height: 1.75;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}

.dark .hero p {
  color: #888;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.hero-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-footer-links a {
  font-size: 0.875rem;
  color: var(--c-text-subtle);
  transition: color 0.2s;
}

.hero-footer-links a:hover {
  color: var(--c-text);
}

.hero-footer-links .sep {
  color: var(--c-border-mid);
}

/* ═══════════════════════════════════════════
   HOW IT WORKS (INDEX PAGE)
═══════════════════════════════════════════ */
.how-section {
  padding: 4rem 1.5rem;
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-subtle);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--c-text);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0px 2px 2px #0000000a, 0px 8px 8px -8px #0000000a;
}

.dark .step-card {
  border-color: #222;
}

.step-num {
  width: 2rem;
  height: 2rem;
  background: #171717;
  color: #fff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.dark .step-num {
  background: #fff;
  color: #171717;
}

.step-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--c-text);
}

.step-card p {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.dark .step-card p {
  color: #888;
}

/* ═══════════════════════════════════════════
   SEO SECTION (INDEX PAGE)
═══════════════════════════════════════════ */
.seo-section {
  padding: 4rem 1.5rem;
}

.seo-copy .section-header {
  margin-bottom: 3rem;
}

.section-subtitle {
  max-width: 42rem;
  margin: 0.75rem auto 0;
  color: var(--c-text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.seo-feature-grid {
  margin-bottom: 0;
}

.seo-feature-grid .step-card p {
  line-height: 1.65;
}

/* Center the 4th card under the middle column on desktop's 3-col grid */
@media (min-width: 768px) {
  .seo-card-centered {
    grid-column: 2;
  }
}

.seo-copy-prose {
  max-width: 720px;
  margin: 0 auto;
}

.seo-copy-prose h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--c-text);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.seo-copy-prose h3:first-child {
  margin-top: 0;
}

.seo-copy-prose p {
  color: var(--c-text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   FAQ SECTION (INDEX PAGE)
═══════════════════════════════════════════ */
.faq-section {
  padding: 4rem 1.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 0;
  box-shadow: 0px 2px 2px #0000000a, 0px 8px 8px -8px #0000000a;
  overflow: hidden;
}

.dark .faq-item {
  border-color: #222;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.125rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

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

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

.faq-item summary:hover {
  background: var(--c-bg-alt);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  color: var(--c-text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0;
}

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta-section {
  padding: 4rem 1.5rem;
}

.cta-section h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.125rem;
  color: var(--c-text-muted);
  margin-bottom: 2.5rem;
}

.dark .cta-section p {
  color: #888;
}

/* ═══════════════════════════════════════════
   SEND / RETRIEVE PAGE LAYOUT
═══════════════════════════════════════════ */
.page-section {
  padding: 2rem 1.5rem 4rem;
  min-height: calc(100vh - var(--nav-h));
}

.page-header {
  margin-bottom: 2.5rem;
}

.page-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-subtle);
  margin-bottom: 0.5rem;
}

.page-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--c-text);
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: 1rem;
  color: var(--c-text-muted);
}

.dark .page-subtitle {
  color: #888;
}

.expiry-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.expiry-row label {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  white-space: nowrap;
}

.dark .expiry-row label {
  color: #888;
}

/* File info row */
.file-info-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  margin-top: 1rem;
}

.dark .file-info-row {
  background: #1a1a1a;
  border-color: #333;
}

.file-info-row svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--c-text-muted);
  flex-shrink: 0;
}

.file-info-row .file-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text);
}

.file-info-row .file-size {
  font-size: 0.75rem;
  color: var(--c-text-subtle);
}

/* Image preview */
.image-preview {
  margin-top: 1rem;
  text-align: center;
}

.image-preview img {
  max-height: 12rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
}

.image-preview .img-name {
  font-size: 0.75rem;
  color: var(--c-text-subtle);
  margin-top: 0.5rem;
}

/* Result card */
.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.result-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-subtle);
  margin-bottom: 0.25rem;
}

.result-type {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-text);
}

.expiry-badge {
  font-size: 0.75rem;
  color: var(--c-text-subtle);
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-full);
  padding: 0.25rem 0.75rem;
  white-space: nowrap;
}

.dark .expiry-badge {
  background: #1a1a1a;
  border-color: #333;
}

.text-result-box {
  position: relative;
}

.text-result-pre {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  font-size: 0.875rem;
  color: var(--c-text);
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 16rem;
  overflow-y: auto;
  font-family: inherit;
}

.dark .text-result-pre {
  background: #1a1a1a;
  border-color: #333;
}

.copy-inline-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 0 0.75rem;
  height: 1.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--c-text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.copy-inline-btn:hover {
  color: var(--c-text);
  border-color: var(--c-border-strong);
}

.file-download-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.dark .file-download-row {
  background: #1a1a1a;
  border-color: #333;
}

.file-dl-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: #171717;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dark .file-dl-icon {
  background: #fff;
}

.file-dl-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #fff;
}

.dark .file-dl-icon svg {
  color: #171717;
}

.file-dl-info {
  flex: 1;
  min-width: 0;
}

.file-dl-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-dl-sub {
  font-size: 0.75rem;
  color: var(--c-text-subtle);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════
   CONTENT PAGES (ABOUT / PRIVACY / TERMS)
═══════════════════════════════════════════ */
.content-page {
  padding: 6rem 1.5rem;
}

.content-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--c-text-muted);
}

.dark .content-body {
  color: #888;
}

.content-body h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-text);
  margin: 3rem 0 0.75rem;
}

.content-body p {
  margin-bottom: 1rem;
}

.content-body ul {
  padding-left: 0;
}

.content-body li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.content-body li .bullet {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--c-accent);
  margin-top: 0.625rem;
  flex-shrink: 0;
}

.content-body strong {
  color: var(--c-text);
}

.content-body a {
  color: var(--c-text);
  font-weight: 500;
  border-bottom: 1px solid var(--c-border);
  transition: opacity 0.2s;
}

.content-body a:hover {
  opacity: 0.7;
}

/* Buttons inside article content must keep their own colors,
   not the generic link color/underline above */
.content-body a.btn-solid-sm,
.content-body a.btn-outline-sm {
  border-bottom: none;
  font-weight: 500;
}

.content-body a.btn-solid-sm {
  color: #fff;
}

.dark .content-body a.btn-solid-sm {
  color: #000;
}

.content-body a.btn-outline-sm {
  color: #666;
}

.dark .content-body a.btn-outline-sm {
  color: #a1a1a1;
}

.content-body a.btn-outline-sm:hover {
  color: var(--c-text);
}

.dark .content-body a.btn-outline-sm:hover {
  color: #fff;
}

/* Contact form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: #171717;
  border-top: 1px solid #222;
  padding: 4rem 1.5rem;
  transition: background 0.2s;
}

.dark .footer {
  background: #111111;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #222;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-brand-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: #888;
  max-width: 18rem;
}

.footer-links-group {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-col-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 0.75rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  font-size: 0.875rem;
  color: #aaa;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.footer-link:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.75rem;
  color: #888;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  font-size: 0.75rem;
  color: #888;
  transition: color 0.2s;
}

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

/* ═══════════════════════════════════════════
   RESPONSIVE HELPERS
═══════════════════════════════════════════ */
@media (max-width: 639px) {
  .card {
    padding: 1.25rem;
  }

  .modal-box {
    padding: 1.5rem;
  }
}

.seo-copy-prose {
  max-width: 720px;
  margin: 3rem auto 0;
}

.seo-copy-prose h3 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.seo-feature-grid {
  margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════
   ACCESSIBILITY: skip link, focus states, sr-only
═══════════════════════════════════════════ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 0.5rem;
  z-index: 1000;
  background: var(--c-accent);
  color: #171717;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 0.5rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════
   BREADCRUMBS
═══════════════════════════════════════════ */
.breadcrumb-nav {
  max-width: var(--container-sm, 640px);
  margin: 0 auto;
  padding: 1rem 1.5rem 0;
  font-size: 0.8125rem;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--c-text-subtle);
}

.breadcrumb-list a {
  color: var(--c-text-muted);
  text-decoration: none;
}

.breadcrumb-list a:hover {
  color: var(--c-accent);
  text-decoration: underline;
}

.breadcrumb-list li[aria-current="page"] {
  color: var(--c-text);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   INLINE PAGE FAQ / CONTENT (send, retrieve, etc.)
═══════════════════════════════════════════ */
.page-extra-content {
  max-width: 640px;
  margin: 3.5rem auto 0;
}

.page-extra-content h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.page-extra-content p {
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════
   BLOG ARTICLES (extends CONTENT PAGES system)
   Additive only — reuses existing design tokens
═══════════════════════════════════════════ */
.content-body h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--c-text);
  margin: 2rem 0 0.75rem;
}

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

.content-body ol {
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
}

.content-body ol li {
  margin-bottom: 0.6rem;
  padding-left: 0.25rem;
}

.content-body blockquote {
  border-left: 3px solid var(--c-accent);
  padding: 0.25rem 0 0.25rem 1.25rem;
  margin: 1.5rem 0;
  color: var(--c-text-muted);
  font-style: italic;
}

.content-body code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85em;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: 4px;
  padding: 0.15em 0.4em;
  color: var(--c-text);
}

.content-body pre {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.content-body pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.content-body .table-scroll {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border);
}

.content-body .table-scroll table {
  margin: 0;
  border: none;
  min-width: 460px;
}

.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.875rem;
}

.content-body th,
.content-body td {
  text-align: left;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
}

.content-body th {
  background: var(--c-bg-alt);
  color: var(--c-text);
  font-weight: 600;
}

/* Callout boxes */
.callout {
  border: 1px solid var(--c-border);
  background: var(--c-bg-card);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  box-shadow: 0px 2px 2px #0000000a, 0px 8px 8px -8px #0000000a;
}

.callout p:last-child {
  margin-bottom: 0;
}

.callout-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  display: block;
  margin-bottom: 0.4rem;
}

.callout-tip {
  border-left: 3px solid var(--c-accent);
}

.callout-tip .callout-label {
  color: var(--c-accent);
}

.callout-warning {
  border-left: 3px solid #e3a13a;
}

.callout-warning .callout-label {
  color: #e3a13a;
}

/* Article meta / header */
.article-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8125rem;
  color: var(--c-text-subtle);
  margin-bottom: 1rem;
  font-family: 'JetBrains Mono', monospace;
}

.article-lede {
  font-size: 1.0625rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.dark .article-lede {
  color: #999;
}

/* Table of contents */
.article-toc {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0px 2px 2px #0000000a, 0px 8px 8px -8px #0000000a;
}

.article-toc-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-subtle);
  margin-bottom: 0.75rem;
}

.article-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.article-toc li {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0;
  padding-left: 0;
  counter-increment: toc;
}

.article-toc li::before {
  content: counter(toc);
  flex-shrink: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--c-text-subtle);
  min-width: 1.1rem;
}

.article-toc a {
  color: var(--c-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.article-toc a:hover {
  color: var(--c-accent);
}

/* CTA banner inside article */
.article-cta {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: center;
}

.article-cta h3 {
  font-size: 1.25rem;
  margin-top: 0 !important;
  margin-bottom: 0.5rem !important;
}

.article-cta p {
  color: var(--c-text-muted);
  margin-bottom: 1.25rem;
}

.article-cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Related links */
.article-related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-border);
}

.article-related-title {
  font-size: 0.75rem;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-subtle);
  margin-bottom: 0.9rem;
}

.article-related ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.article-related li {
  display: block;
  margin-bottom: 0;
  padding-left: 0;
}

.article-related a {
  display: inline-block;
  font-size: 0.8125rem;
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-full);
  padding: 0.4rem 0.9rem;
  text-decoration: none;
}

.article-related a:hover {
  border-color: var(--c-border-mid);
  color: var(--c-text);
}

/* Blog index grid */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 720px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.blog-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0px 2px 2px #0000000a, 0px 8px 8px -8px #0000000a;
  transition: border-color 0.2s;
}

.blog-card:hover {
  border-color: var(--c-border-mid);
}

.blog-card-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-accent);
  margin-bottom: 0.6rem;
}

.blog-card h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

.blog-card h2 a {
  color: inherit;
  text-decoration: none;
}

.blog-card h2 a:hover {
  color: var(--c-accent);
}

.blog-card p {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 0.9rem;
}

.blog-card-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--c-text);
  text-decoration: none;
}

.blog-card-link:hover {
  color: var(--c-accent);
}