/* Perspiq marketing design tokens — ported from portable src/styles.css */

/* Match Tailwind preflight / WordPress global reset so full-bleed heroes are edge-to-edge */
html,
body {
  margin: 0;
  padding: 0;
}

:root {
  --radius: 0.5rem;
  --ink: oklch(0.19 0.04 265);
  --ink-soft: oklch(0.42 0.02 265);
  --cream: oklch(0.985 0.006 90);
  --charcoal: oklch(0.22 0.005 260);
  --pink-soft: oklch(0.95 0.03 350);
  --up: oklch(0.62 0.16 145);
  --down: oklch(0.62 0.2 20);
  --background: oklch(1 0 0);
  --foreground: var(--ink);
  --primary: oklch(0.55 0.15 350);
  --primary-foreground: oklch(1 0 0);
  --secondary: oklch(0.968 0.007 90);
  --muted: oklch(0.968 0.007 90);
  --muted-foreground: oklch(0.5 0.02 265);
  --accent: var(--pink-soft);
  --border: oklch(0.92 0.006 90);
  --ring: oklch(0.55 0.15 350);
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --header-h: 5rem;
}

.mkt-page {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mkt-page *,
.mkt-page *::before,
.mkt-page *::after {
  box-sizing: border-box;
}

.mkt-page h1,
.mkt-page h2,
.mkt-page h3,
.mkt-page h4,
.mkt-page h5,
.mkt-page h6 {
  color: var(--ink);
  font-weight: 500;
  letter-spacing: normal;
  margin: 0;
}

.mkt-page a {
  color: inherit;
  text-decoration: none;
}

.mkt-page img {
  max-width: 100%;
  height: auto;
}

.mkt-page button {
  font-family: inherit;
}

.mkt-h-hero {
  font-size: 52px;
  line-height: 62.4px;
  font-weight: 500;
  letter-spacing: 0.26px;
}

.mkt-h-section {
  font-size: 30px;
  line-height: 42px;
  font-weight: 500;
}

.mkt-h-sub {
  font-size: 22px;
  line-height: 22px;
  font-weight: 500;
}

.mkt-h-compare {
  font-size: 18px;
  line-height: 40px;
  font-weight: 700;
}

.mkt-h-metric {
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
}

.mkt-h-integration {
  font-size: 18px;
  line-height: 36px;
  font-weight: 500;
}

.mkt-h-blog {
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
}

.mkt-body-copy {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
}

.mkt-eyebrow {
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0;
}

.mkt-text-ink {
  color: var(--ink);
}

.mkt-text-ink-soft {
  color: var(--ink-soft);
}

.mkt-text-primary {
  color: var(--primary);
}

.mkt-bg-cream {
  background-color: var(--cream);
}

.mkt-bg-charcoal {
  background-color: var(--charcoal);
}

.mkt-bg-background {
  background-color: var(--background);
}

@media (max-width: 768px) {
  .mkt-h-hero {
    font-size: 32px;
    line-height: 40px;
  }

  .mkt-h-section {
    font-size: 24px;
    line-height: 34px;
  }

  .mkt-eyebrow {
    font-size: 16px;
    line-height: 22px;
  }
}
