/* evodash.css — design system shared by landing + all sub-pages */

:root {
  --primary: #2b60c5;
  --primary-600: #2151ad;
  --primary-700: #1a4191;
  --primary-800: #143476;
  --primary-50: #eef3fb;
  --primary-100: #dbe6f7;
  --primary-200: #b9cdee;

  --bg: #f6f5f0;
  --bg-2: #ffffff;
  --bg-soft: #efece4;
  --bg-dark: #0d1a36;
  --bg-darker: #091230;

  --ink: #0e1320;
  --ink-2: #3d4452;
  --ink-3: #71778a;
  --ink-4: #a3a8b5;

  --line: #e7e3d6;
  --line-2: #efece2;
  --line-3: #f3f1ea;

  --success: #15a35e;
  --success-bg: #e6f5ec;
  --success-ink: #0f7344;
  --warn: #cf6f1a;
  --warn-bg: #fdf3e3;
  --warn-ink: #a86316;
  --danger: #c0344c;
  --danger-bg: #fbe8ec;
  --accent: #f4d35e;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(13, 26, 54, 0.04), 0 1px 0 rgba(13, 26, 54, 0.02);
  --shadow: 0 4px 14px rgba(13, 26, 54, 0.06), 0 1px 2px rgba(13, 26, 54, 0.04);
  --shadow-lg: 0 24px 60px -20px rgba(13, 26, 54, 0.18), 0 8px 24px -8px rgba(13, 26, 54, 0.1);
  --shadow-xl: 0 40px 100px -30px rgba(13, 26, 54, 0.28), 0 16px 40px -12px rgba(13, 26, 54, 0.14);

  --font-display: "Geist", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-body: "Geist", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --maxw: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}

/* Type system */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
  font-weight: 600;
}
h1 {
  font-size: clamp(40px, 5.6vw, 72px);
  letter-spacing: -0.035em;
  font-weight: 600;
}
h2 {
  font-size: clamp(32px, 3.6vw, 52px);
  letter-spacing: -0.028em;
}
h3 {
  font-size: clamp(22px, 1.8vw, 28px);
  letter-spacing: -0.02em;
}
h4 {
  font-size: 18px;
  letter-spacing: -0.01em;
  font-weight: 600;
}
p {
  margin: 0;
  color: var(--ink-2);
  text-wrap: pretty;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 22px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  letter-spacing: -0.005em;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 6px 18px -8px rgba(43, 96, 197, 0.6);
}
.btn-primary:hover {
  background: var(--primary-600);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  background: #fff;
  border-color: #d8d3c2;
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover {
  background: #1f2536;
  transform: translateY(-1px);
}
.btn-sm {
  height: 38px;
  padding: 0 16px;
  font-size: 14px;
  border-radius: 8px;
}
.btn-lg {
  height: 54px;
  padding: 0 28px;
  font-size: 16px;
  border-radius: 12px;
}

/* Layout */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}
section {
  padding: 96px 0;
  position: relative;
}
section.tight {
  padding: 64px 0;
}
.section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head.left {
  margin-left: 0;
  text-align: left;
}
.section-head .eyebrow {
  display: block;
  margin-bottom: 14px;
}
.section-head p {
  margin-top: 18px;
  font-size: 18px;
  color: var(--ink-2);
}

/* Reusable surfaces */
.surface {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.surface-soft {
  background: var(--bg-soft);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
}

/* Numbers/data */
.num {
  font-family: var(--font-mono);
  font-feature-settings: "tnum", "ss01";
  font-variant-numeric: tabular-nums;
}

/* Pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--primary-50);
  color: var(--primary-700);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid var(--primary-100);
}
.pill.success {
  background: var(--success-bg);
  color: var(--success-ink);
  border-color: #cfe9d8;
}
.pill.neutral {
  background: #fff;
  color: var(--ink-2);
  border-color: var(--line);
}
.pill.warn {
  background: var(--warn-bg);
  color: var(--warn-ink);
  border-color: #f0d6a8;
}
.pill.danger {
  background: var(--danger-bg);
  color: var(--danger);
  border-color: #f1c6d0;
}
.pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
}

/* Divider */
.hr {
  height: 1px;
  background: var(--line-2);
  margin: 0;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Animations */
@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 163, 94, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(21, 163, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(21, 163, 94, 0);
  }
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--success);
  animation: pulseDot 1.6s ease-out infinite;
}

@keyframes sparkSlide {
  0% {
    stroke-dashoffset: 600;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

/* Grid pattern bg */
.grid-bg {
  background-image:
    linear-gradient(to right, rgba(13, 26, 54, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(13, 26, 54, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
}

/* Dark sections */
.dark-section {
  background: var(--bg-dark);
  color: #e9edf6;
}
.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4 {
  color: #fff;
}
.dark-section p {
  color: #a8b3cf;
}
.dark-section .eyebrow {
  color: #8ea9ea;
}
.dark-section .hr {
  background: rgba(255, 255, 255, 0.08);
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.025em;
}
.logo img {
  display: block;
}

/* Focus reset */
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 8px;
}

/* Marketplace chip */
.mp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line-2);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  font-family: var(--font-display);
}
.mp-chip .swatch {
  width: 14px;
  height: 14px;
  border-radius: 4px;
}

/* Data label */
.data-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}

/* Dotted divider row */
.dot-row {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--ink-3);
  font-size: 13px;
}
.dot-row::before,
.dot-row::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* Scrollbar */
body::-webkit-scrollbar {
  width: 12px;
  background: var(--bg);
}
body::-webkit-scrollbar-thumb {
  background: #d5d1c1;
  border-radius: 8px;
  border: 3px solid var(--bg);
}

/* ─────────────────────────────────────────────────────────────────────────
   Static-page utilities (used by all sub-pages)
   ───────────────────────────────────────────────────────────────────────── */

/* Static nav (no JS scroll behavior; always solid) */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 245, 240, 0.86);
  border-bottom: 1px solid var(--line-2);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
}
.site-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.site-nav nav {
  display: flex;
  gap: 30px;
  font-size: 14.5px;
  color: var(--ink-2);
}
.site-nav nav a {
  font-weight: 500;
  transition: color 0.15s;
}
.site-nav nav a:hover {
  color: var(--ink);
}
.site-nav .nav-right {
  display: flex;
  gap: 8px;
  align-items: center;
}
.site-nav .nav-right .login {
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 14px;
  color: var(--ink-2);
}

/* Page hero (sub-pages) */
.page-hero {
  padding: 88px 0 64px;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line-2);
  position: relative;
  overflow: hidden;
}
.page-hero .container {
  position: relative;
  max-width: 920px;
  text-align: center;
}
.page-hero .grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
}
.page-hero .eyebrow {
  display: block;
  margin-bottom: 14px;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
}
.page-hero .lede {
  margin: 22px auto 0;
  font-size: 19px;
  max-width: 640px;
  color: var(--ink-2);
}
.page-hero .actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.page-hero.left .container {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
.page-hero.left .lede {
  margin-left: 0;
}
.page-hero.left .actions {
  justify-content: flex-start;
}

/* Content sections */
.page-section {
  padding: 88px 0;
}
.page-section.bg-soft {
  background: #fff;
}
.page-section.bg-dark {
  background: var(--bg-dark);
  color: #e9edf6;
}
.page-section.bg-dark h1,
.page-section.bg-dark h2,
.page-section.bg-dark h3,
.page-section.bg-dark h4 {
  color: #fff;
}
.page-section.bg-dark p {
  color: #a8b3cf;
}
.page-section.bg-dark .eyebrow {
  color: #8ea9ea;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.weighted-left {
  grid-template-columns: 1.2fr 1fr;
}
.split.weighted-right {
  grid-template-columns: 1fr 1.2fr;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
.feature-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-100);
}
.feature-card .ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  display: grid;
  place-items: center;
  color: var(--primary);
}
.feature-card h4 {
  font-size: 16.5px;
}
.feature-card p {
  font-size: 13.5px;
  line-height: 1.55;
}

/* Check list */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-2);
}
.checklist li::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  flex: none;
  margin-top: 1px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232b60c5' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l5 5 9-11'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

.dark-section .checklist li {
  color: #cad3e6;
}
.dark-section .checklist li::before {
  background-color: rgba(43, 96, 197, 0.4);
  border-color: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239fbcf3' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l5 5 9-11'/></svg>");
}

/* Stats strip */
.stats-strip {
  padding: 28px 32px;
  background: var(--bg);
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stats-strip .stat {
  text-align: center;
}
.stats-strip .stat .v {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stats-strip .stat .l {
  font-size: 12.5px;
  color: var(--ink-3);
  margin-top: 6px;
}

/* Page CTA */
.page-cta {
  padding: 96px 0;
  background: var(--bg);
}
.page-cta .box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary) 50%, #3a78dd 100%);
  border-radius: 24px;
  padding: 64px 48px;
  color: #fff;
  text-align: center;
  box-shadow: 0 40px 100px -30px rgba(43, 96, 197, 0.5);
}
.page-cta .box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at center, #000 30%, transparent 70%);
  mask-image: radial-gradient(ellipse 80% 60% at center, #000 30%, transparent 70%);
  pointer-events: none;
}
.page-cta .box > * {
  position: relative;
}
.page-cta h2 {
  color: #fff;
  font-size: clamp(28px, 3.6vw, 46px);
}
.page-cta .lede {
  margin: 18px auto 0;
  color: #cdd9f3;
  max-width: 540px;
  font-size: 17px;
}
.page-cta .actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}
.page-cta .actions .btn {
  background: #fff;
  color: var(--primary);
  font-weight: 600;
}
.page-cta .actions .btn.ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Long-form prose (Termos, Privacidade, etc.) */
.prose {
  max-width: 760px;
  margin: 0 auto;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.7;
}
.prose h2 {
  font-size: 28px;
  margin: 48px 0 14px;
  letter-spacing: -0.02em;
}
.prose h3 {
  font-size: 20px;
  margin: 32px 0 10px;
  letter-spacing: -0.015em;
}
.prose p {
  margin: 0 0 16px;
}
.prose ul,
.prose ol {
  margin: 0 0 16px;
  padding-left: 24px;
}
.prose li {
  margin-bottom: 6px;
}
.prose strong {
  color: var(--ink);
  font-weight: 600;
}
.prose a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.prose .last-updated {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 32px;
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: #a8b3cf;
  padding: 72px 0 32px;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer .col-title {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-mono);
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer ul a {
  font-size: 13.5px;
  color: #a8b3cf;
  transition: color 0.15s;
}
.site-footer ul a:hover {
  color: #fff;
}
.site-footer .brand-blurb {
  margin-top: 18px;
  color: #a8b3cf;
  font-size: 14px;
  max-width: 320px;
  line-height: 1.6;
}
.site-footer .social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.site-footer .social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 600;
  color: #a8b3cf;
  font-family: var(--font-mono);
}
.site-footer .social a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.site-footer .footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer .copyright {
  font-size: 12.5px;
  color: #71778a;
  font-family: var(--font-mono);
}
.site-footer .legal-links {
  display: flex;
  gap: 22px;
  font-size: 12.5px;
  color: #71778a;
}
.site-footer .legal-links a:hover {
  color: #a8b3cf;
}

/* Mock product/screenshot frame */
.shot-frame {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow-lg);
}
.shot-frame .topbar {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}
.shot-frame .topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #e6e3d8;
}
.shot-frame .topbar span:nth-child(1) {
  background: #f3a3a8;
}
.shot-frame .topbar span:nth-child(2) {
  background: #f3d28a;
}
.shot-frame .topbar span:nth-child(3) {
  background: #a4d4a8;
}

/* Code block */
.code {
  background: #0d1a36;
  color: #cad3e6;
  border-radius: 12px;
  padding: 18px 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  overflow: auto;
  border: 1px solid #14264e;
  white-space: pre;
}
.code .k {
  color: #9fbcf3;
}
.code .s {
  color: #a4d4a8;
}
.code .c {
  color: #71778a;
  font-style: italic;
}
.code .n {
  color: #f3d28a;
}

/* FAQ accordion (static) */
.faq-item {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 10px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 15.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-family: var(--font-display);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--ink-3);
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 400;
  transition:
    transform 0.2s,
    background 0.2s,
    color 0.2s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff;
}
.faq-item .a {
  margin-top: 14px;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.65;
}

/* Status table */
.status-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.status-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 10px;
}
.status-row .name {
  font-weight: 500;
}
.status-row .desc {
  display: block;
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 2px;
  font-weight: 400;
}
.status-row .uptime {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-3);
}

/* Job card */
.job-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  margin-bottom: 10px;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.job-row:hover {
  border-color: var(--primary-100);
  box-shadow: var(--shadow);
}
.job-row .meta {
  display: flex;
  gap: 14px;
  color: var(--ink-3);
  font-size: 13px;
  margin-top: 6px;
}
.job-row .arrow {
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
}

/* Blog post card */
.post-card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-100);
}
.post-card .cover {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
  position: relative;
  overflow: hidden;
}
.post-card .cover.alt {
  background: linear-gradient(135deg, var(--bg-dark), var(--primary-700));
}
.post-card .cover .pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.45;
}
.post-card .body {
  padding: 20px 22px;
}
.post-card .tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 500;
}
.post-card h3 {
  font-size: 19px;
  margin-top: 10px;
}
.post-card .excerpt {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.55;
}
.post-card .meta {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-3);
  font-family: var(--font-mono);
}

/* Help center category card */
.help-cat {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}
.help-cat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-100);
}
.help-cat .ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  display: grid;
  place-items: center;
  color: var(--primary);
}
.help-cat h4 {
  font-size: 17px;
}
.help-cat .count {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-3);
}

/* Marketplace logo display */
.mp-hero-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
.mp-hero-mark .swatch {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--font-mono);
  font-size: 13px;
}
.mp-hero-mark .name {
  font-weight: 500;
  font-size: 14.5px;
}

@media (max-width: 900px) {
  .split,
  .feature-grid,
  .feature-grid.cols-4,
  .stats-strip,
  .site-footer .footer-grid {
    grid-template-columns: 1fr !important;
  }
  section,
  .page-section {
    padding: 64px 0;
  }
  .page-cta .box {
    padding: 48px 24px;
  }
}

@media (max-width: 760px) {
  .site-nav .nav-inner {
    padding: 12px 20px;
  }
  .site-nav nav {
    display: none;
  }
}

@media (max-width: 480px) {
  .site-nav .nav-inner {
    padding: 10px 16px;
  }
  .site-nav .logo img {
    width: 132px;
    height: auto;
  }
  .site-nav .nav-right .login {
    display: none;
  }
}
