/* ═══════════════════════════════════════════════════════════════════
   Editorial Landing Page
   Warm, human-centered design with African-inspired accent tones
   ═══════════════════════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,700;1,9..40,400&family=DM+Serif+Display&family=Space+Mono:wght@400;700&display=swap");

/* ─── Tokens ──────────────────────────────────────────────────────── */
:root {
  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "Space Mono", "Courier New", monospace;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── Reset & Base ────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}

/* ─── Layout ──────────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.wrap-wide {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Grain Overlay (texture) ─────────────────────────────────────── */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

/* ─── Navigation ──────────────────────────────────────────────────── */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 72px;
  display: flex;
  align-items: center;
  transition:
    background 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.topnav.pinned {
  background: var(--white);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--c-border);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
.logo em {
  font-style: normal;
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  /* color: var(--c-ink-soft); */
  position: relative;
  /* padding: 4px 0; */
  transition: color 0.25s;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s var(--ease-out);
}
.nav-menu a:hover {
  color: var(--c-ink);
}
.nav-menu a:hover::after {
  width: 100%;
}

/* Auth pill — gradient with glow */
.auth-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--primary);
  /* background: linear-gradient(135deg, var(--primary), rgba(232, 113, 58, 1)); */
  color: rgba(var(--surface-rgb), 1);
  border: none;
  box-shadow: 0 2px 12px rgba(var(--primary-rgb), 0.25);
  transition:
    transform 0.2s var(--ease-spring),
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.auth-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(var(--surface-rgb), 0.18),
    transparent 60%
  );
  pointer-events: none;
}
.auth-pill:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.35);
  color: #fff !important;
}
.auth-pill:active {
  transform: scale(0.98);
}

/* The underline animation should NOT apply to the auth pill */
.nav-menu .auth-pill::after {
  display: none;
}

/* ─── Mobile Overlay Menu ─────────────────────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 190;
  pointer-events: none;
  visibility: hidden;
}
.mobile-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--ink-rgb), 0.35);
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
}
.mobile-overlay.open {
  pointer-events: auto;
  visibility: visible;
  height: 100vh;
}
.mobile-overlay.open::before {
  opacity: 1;
}

.mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: var(--c-surface);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  padding: 6rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}
.mobile-overlay.open .mobile-panel {
  transform: translateX(0);
}

.mobile-menu-links {
  list-style: none;
  flex: 1;
}
.mobile-menu-links li {
  border-bottom: 1px solid var(--c-border);
}
.mobile-menu-links a {
  display: block;
  padding: 1.1rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-ink);
  transition:
    color 0.2s,
    padding-left 0.2s var(--ease-out);
}
.mobile-menu-links a:hover {
  color: var(--primary);
  padding-left: 8px;
}

.mobile-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--c-ink-soft);
  padding: 6px;
  border-radius: 8px;
  transition:
    color 0.2s,
    background 0.2s;
  z-index: 5;
}
.mobile-close:hover {
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.06);
}

.mobile-menu-footer {
  padding-top: 1.5rem;
}

/* Hamburger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.burger i {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
  transition:
    transform 0.3s var(--ease-out),
    opacity 0.2s;
}
.burger.on i:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.burger.on i:nth-child(2) {
  opacity: 0;
}
.burger.on i:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ─── Hero ────────────────────────────────────────────────────────── */
.hero {
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}

/* Decorative organic blobs */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}
.hero::before {
  width: 500px;
  height: 500px;
  top: -120px;
  right: -100px;
  background: var(--primary);
}
.hero::after {
  width: 350px;
  height: 350px;
  bottom: -80px;
  left: -60px;
  background: var(--c-teal);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
  margin-bottom: 1.5rem;
}
.hero-tag .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero h1 .hl {
  color: var(--primary);
  position: relative;
}
.hero h1 .hl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 8px;
  background: rgba(var(--primary-rgb), 0.15);
  border-radius: 4px;
  z-index: -1;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--c-ink-soft);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.9rem 2rem;
  background: var(--primary);
  color: rgba(var(--surface-rgb), 1);
  font-size: 0.9375rem;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  transition:
    background 0.2s,
    transform 0.2s var(--ease-spring),
    box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.25);
}
.btn-main:hover {
  background: var(--primary-h);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(var(--primary-rgb), 0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.9rem 1.75rem;
  background: transparent;
  color: var(--c-ink);
  font-size: 0.9375rem;
  font-weight: 600;
  border: 1.5px solid var(--c-border);
  border-radius: 14px;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-ghost:hover {
  border-color: var(--c-ink);
  background: rgba(var(--ink-rgb), 0.03);
}

/* Hero right visual */
.hero-visual {
  position: relative;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-left: auto;
}

.hc {
  background: var(--c-surface);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow:
    0 2px 24px rgba(var(--ink-rgb), 0.06),
    0 0 0 1px var(--c-border);
  position: relative;
}

.hc + .hc {
  margin-top: 1rem;
}

.hc-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hc-avatar {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: rgba(var(--surface-rgb), 1);
  flex-shrink: 0;
}

.hc-name {
  font-weight: 700;
  font-size: 1rem;
}
.hc-role {
  font-size: 0.8125rem;
  color: var(--c-ink-mute);
  margin-top: 2px;
}

.hc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hc-stat {
  text-align: center;
  padding: 0.75rem 0.5rem;
  border-radius: 12px;
  background: var(--c-bg);
}
.hc-stat strong {
  display: block;
  font-size: 1.2rem;
  font-family: var(--font-mono);
  letter-spacing: -0.03em;
}
.hc-stat span {
  font-size: 0.6875rem;
  color: var(--c-ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.rating-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--secondary);
  color: rgba(var(--surface-rgb), 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
  font-family: var(--font-mono);
  box-shadow: 0 4px 12px rgba(var(--secondary-rgb), 0.3);
  border: 3px solid var(--c-bg);
}

.verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-teal);
  background: rgba(var(--teal-rgb), 0.08);
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 0.75rem;
}

/* Floating badge */
.float-badge {
  position: absolute;
  bottom: -16px;
  left: -20px;
  padding: 10px 18px;
  background: var(--c-surface);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  animation: float-bob 4s ease-in-out infinite;
}
@keyframes float-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ─── Trusted By Strip ────────────────────────────────────────────── */
.trust-strip {
  padding: 3.5rem 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--c-ink-soft);
}

.trust-num {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-ink);
  letter-spacing: -0.04em;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--c-border);
}

/* ─── Section Primitives ──────────────────────────────────────────── */
.sec {
  padding: 5.5rem 0;
}
.sec-alt {
  background: var(--c-bg-alt);
}

.sec-header {
  margin-bottom: 3.5rem;
}

.sec-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.sec-desc {
  font-size: 1.05rem;
  color: var(--c-ink-soft);
  max-width: 520px;
  margin-top: 0.75rem;
  line-height: 1.7;
}

/* ─── Value Props ─────────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.val-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 2.25rem;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.val-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(var(--ink-rgb), 0.07);
}
.val-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
}
.val-card:nth-child(1)::before {
  background: var(--c-teal);
}
.val-card:nth-child(2)::before {
  background: var(--secondary);
}
.val-card:nth-child(3)::before {
  background: var(--c-plum);
}

.val-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.val-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.val-card:nth-child(1) .val-icon {
  background: rgba(var(--teal-rgb), 0.1);
}
.val-card:nth-child(1) .val-icon svg {
  stroke: var(--c-teal);
}
.val-card:nth-child(2) .val-icon {
  background: rgba(var(--secondary-rgb), 0.1);
}
.val-card:nth-child(2) .val-icon svg {
  stroke: var(--secondary);
}
.val-card:nth-child(3) .val-icon {
  background: rgba(var(--plum-rgb), 0.1);
}
.val-card:nth-child(3) .val-icon svg {
  stroke: var(--c-plum);
}

.val-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.val-card p {
  font-size: 0.9375rem;
  color: var(--c-ink-soft);
  line-height: 1.65;
}

/* ─── Category Scroll ─────────────────────────────────────────────── */
.cat-scroll-wrap {
  overflow: visible;
  padding: 1.5rem 0;
  margin-top: -1rem;
}

.cat-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0.5rem;
  margin: -1rem -0.5rem;
  scrollbar-width: none;
}
.cat-scroll::-webkit-scrollbar {
  display: none;
}

.cat-card {
  flex: 0 0 180px;
  scroll-snap-align: start;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.3s var(--ease-out),
    border-color 0.3s,
    box-shadow 0.3s;
}
.cat-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.08);
}

.cat-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: var(--c-bg-alt);
  transition: background 0.3s;
}
.cat-card:hover .cat-icon-wrap {
  background: rgba(var(--primary-rgb), 0.08);
}

.cat-icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s;
}
.cat-card:hover .cat-icon-wrap svg {
  stroke: var(--secondary);
}

.cat-card h3 {
  font-size: 0.9375rem;
  font-weight: 600;
}

/* ─── How It Works ────────────────────────────────────────────────── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
  position: relative;
}

/* Connector line */
.steps-row::before {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--c-border) 0,
    var(--c-border) 6px,
    transparent 6px,
    transparent 12px
  );
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  counter-increment: step;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-surface);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  transition:
    background 0.25s,
    color 0.25s;
}
.step-card:hover .step-num {
  background: var(--primary);
  color: rgba(var(--surface-rgb), 1);
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9375rem;
  color: var(--c-ink-soft);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ─── For Professionals ───────────────────────────────────────────── */
.pro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pro-feat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pro-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(var(--primary-rgb), 0.08);
}
.pro-feat-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pro-feat h4 {
  font-weight: 700;
  margin-bottom: 4px;
}
.pro-feat p {
  font-size: 0.9rem;
  color: var(--c-ink-soft);
  line-height: 1.6;
}

/* Dashboard preview card */
.dash-preview {
  background: var(--c-ink);
  border-radius: 24px;
  padding: 2rem;
  color: rgba(var(--surface-rgb), 1);
  position: relative;
  overflow: hidden;
}
.dash-preview::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.1;
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}
.dash-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.dash-name {
  font-weight: 700;
}
.dash-sub {
  font-size: 0.75rem;
  opacity: 0.5;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}
.dash-metric {
  background: rgba(var(--surface-rgb), 0.06);
  border-radius: 16px;
  padding: 1.25rem;
  border: 1px solid rgba(var(--surface-rgb), 0.06);
}
.dash-metric strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}
.dash-metric span {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.4;
}

.dash-bar-wrap {
  margin-top: 1rem;
  background: rgba(var(--surface-rgb), 0.06);
  border-radius: 16px;
  padding: 1.25rem;
  border: 1px solid rgba(var(--surface-rgb), 0.06);
  position: relative;
  z-index: 1;
}
.dash-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  margin-bottom: 8px;
}
.dash-bar-label span:last-child {
  color: #4ade80;
}
.dash-bar-track {
  height: 6px;
  border-radius: 6px;
  background: rgba(var(--surface-rgb), 0.08);
  overflow: hidden;
}
.dash-bar-fill {
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 1.2s var(--ease-out);
}

/* ─── Testimonials ────────────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 2rem;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s;
  position: relative;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(var(--ink-rgb), 0.06);
}

.testi-quote {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  top: 16px;
  left: 20px;
}

.testi-text {
  font-size: 0.9375rem;
  color: var(--c-ink-soft);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testi-who {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: rgba(var(--surface-rgb), 1);
}

.testi-name {
  font-weight: 700;
  font-size: 0.875rem;
}

/* ─── Blog / Insights ────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(var(--ink-rgb), 0.08);
}

.blog-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.blog-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
}

.blog-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  color: rgba(var(--surface-rgb), 1);
}

.blog-date {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--c-ink-mute);
  letter-spacing: 0.04em;
}

.blog-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: 0.6rem;
  flex-shrink: 0;
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--c-ink-soft);
  line-height: 1.65;
  flex: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary);
  transition: gap 0.25s var(--ease-out);
}
.blog-card:hover .blog-read-more {
  gap: 10px;
}

.blog-read-more svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke: currentColor;
}

/* ─── Featured Artisans ───────────────────────────────────────────── */
.artisan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.art-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 2rem;
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s;
  position: relative;
}
.art-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(var(--ink-rgb), 0.06);
}

.art-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.25rem;
}

.art-av {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: rgba(var(--surface-rgb), 1);
  flex-shrink: 0;
}

.art-name {
  font-weight: 700;
}
.art-role {
  font-size: 0.8125rem;
  color: var(--c-ink-mute);
  margin-top: 2px;
}

.art-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.art-stars {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
.art-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--secondary);
}

.art-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-teal);
  background: rgba(var(--teal-rgb), 0.08);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ─── Footer ──────────────────────────────────────────────────────── */
.site-footer {
  background: var(--c-ink);
  color: rgba(var(--surface-rgb), 0.6);
  padding: 5rem 0 0;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.foot-brand .logo {
  color: rgba(var(--surface-rgb), 1);
}
.foot-brand p {
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 300px;
  line-height: 1.7;
}

.foot-col h4 {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(var(--surface-rgb), 0.3);
  margin-bottom: 1.25rem;
}
.foot-col ul {
  list-style: none;
}
.foot-col li + li {
  margin-top: 0.75rem;
}
.foot-col a {
  font-size: 0.9rem;
  transition: color 0.2s;
}
.foot-col a:hover {
  color: rgba(var(--surface-rgb), 1);
}

/* Newsletter */
.nl-form {
  display: flex;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(var(--surface-rgb), 0.1);
  margin-top: 1.5rem;
  max-width: 340px;
  background: rgba(var(--surface-rgb), 0.04);
  transition: border-color 0.3s;
}
.nl-form:focus-within {
  border-color: var(--primary);
}
.nl-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: rgba(var(--surface-rgb), 1);
  padding: 0.8rem 1rem;
  font-size: 0.875rem;
  font-family: inherit;
}
.nl-form input::placeholder {
  color: rgba(var(--surface-rgb), 0.3);
}
.nl-form button {
  padding: 0.8rem 1.25rem;
  background: var(--primary);
  color: rgba(var(--surface-rgb), 1);
  border: none;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  transition: background 0.2s;
  white-space: nowrap;
}
.nl-form button:hover {
  background: var(--primary-h);
}

.foot-bottom {
  border-top: 1px solid rgba(var(--surface-rgb), 0.06);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
}

.foot-socials {
  display: flex;
  gap: 0.75rem;
}
.foot-socials a {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(var(--surface-rgb), 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    transform 0.2s var(--ease-spring);
}
.foot-socials a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}
.foot-socials svg {
  width: 15px;
  height: 15px;
  fill: rgba(var(--surface-rgb), 1);
}

/* ─── Skeleton Loaders ────────────────────────────────────────────── */
.skel-box {
  background: linear-gradient(
    90deg,
    var(--c-bg-alt) 25%,
    #e8e3da 50%,
    var(--c-bg-alt) 75%
  );
  background-size: 200% 100%;
  animation: skel-shimmer 1.5s ease-in-out infinite;
  border-radius: 8px;
}

@keyframes skel-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Hide skeleton inner text / SVGs */
.skel .cat-icon-wrap,
.skel .val-icon,
.skel .art-av,
.skel .testi-quote {
  visibility: hidden;
}

/* ─── Lazy-loaded Images ──────────────────────────────────────────── */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
img[loading="lazy"].loaded,
img.loaded {
  opacity: 1;
}

/* Blog card image fallback keeps gradient visible behind lazy img */
.blog-card-img-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.blog-card-img-wrap .blog-card-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Scroll Reveal ───────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s var(--ease-out),
    transform 0.65s var(--ease-out);
}
.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s var(--ease-out),
    transform 0.5s var(--ease-out);
}
.reveal-stagger.vis > *:nth-child(1) {
  transition-delay: 0ms;
}
.reveal-stagger.vis > *:nth-child(2) {
  transition-delay: 80ms;
}
.reveal-stagger.vis > *:nth-child(3) {
  transition-delay: 160ms;
}
.reveal-stagger.vis > *:nth-child(4) {
  transition-delay: 240ms;
}
.reveal-stagger.vis > *:nth-child(5) {
  transition-delay: 320ms;
}
.reveal-stagger.vis > *:nth-child(6) {
  transition-delay: 400ms;
}
.reveal-stagger.vis > * {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .hero h1 {
    max-width: 560px;
  }
  .pro-grid {
    grid-template-columns: 1fr;
  }
  .dash-preview {
    max-width: 480px;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  /* Hide desktop nav links, show burger */
  .nav-menu {
    display: none;
  }
  .burger {
    display: flex;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
  .steps-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .steps-row::before {
    display: none;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .artisan-grid {
    grid-template-columns: 1fr;
  }
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .foot-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .trust-items {
    gap: 1.5rem;
  }
  .trust-divider {
    display: none;
  }
}
