/* OrbytPay marketing / SEO pages — black / white / grey */

:root {
  --m-bg: #f5f5f5;
  --m-bg-2: #fafafa;
  --m-panel: #ffffff;
  --m-ink: #0a0a0a;
  --m-muted: #6b6b6b;
  --m-subtle: #999999;
  --m-line: #e0e0e0;
  --m-accent: #0a0a0a;
  --m-accent-hover: #333333;
  --m-display: 'DM Sans', system-ui, sans-serif;
  --m-body: 'DM Sans', system-ui, sans-serif;
  --m-mono: "JetBrains Mono", ui-monospace, monospace;
  --m-shadow: 0 1px 3px rgba(0, 0, 0, .06), 0 4px 16px rgba(0, 0, 0, .04);
  --m-safe-t: env(safe-area-inset-top, 0px);
  --m-safe-b: env(safe-area-inset-bottom, 0px);
}

body.mkt-page {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--m-bg);
  color: var(--m-ink);
  font-family: var(--m-body);
  -webkit-font-smoothing: antialiased;
}

.mkt-wrap {
  flex: 1;
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
  padding: 24px 20px calc(64px + var(--m-safe-b));
}

.mkt-hero {
  padding: 12px 0 36px;
  border-bottom: 1px solid var(--m-line);
  margin-bottom: 36px;
}

.mkt-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--m-muted);
}

.mkt-hero .eyebrow .pill {
  background: var(--m-bg-2);
  color: var(--m-ink);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--m-line);
  letter-spacing: .04em;
}

.mkt-hero h1 {
  margin: 0 0 14px;
  font-family: var(--m-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.75rem);
  letter-spacing: -.04em;
  line-height: 1.08;
  max-width: 18ch;
}

.mkt-hero .lede {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--m-muted);
  max-width: 58ch;
}

.mkt-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.mkt-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.mkt-cta a:hover { transform: translateY(-1px); text-decoration: none; }
.mkt-cta .primary {
  background: var(--m-accent);
  color: #ffffff;
  box-shadow: var(--m-shadow);
}
.mkt-cta .primary:hover { background: var(--m-accent-hover); }
.mkt-cta .ghost {
  border: 1px solid var(--m-line);
  color: var(--m-ink);
  background: var(--m-panel);
}

.mkt-section {
  margin-bottom: 40px;
}

.mkt-section h2 {
  margin: 0 0 12px;
  font-family: var(--m-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

.mkt-section p,
.mkt-section li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--m-muted);
}

.mkt-section p { margin: 0 0 14px; max-width: 62ch; }
.mkt-section ul { margin: 0 0 14px; padding-left: 1.2em; max-width: 62ch; }
.mkt-section li { margin-bottom: 8px; }
.mkt-section a { color: var(--m-ink); font-weight: 600; }
.mkt-section code {
  font-family: var(--m-mono);
  font-size: 13px;
  background: var(--m-bg-2);
  color: var(--m-ink);
  padding: 1px 6px;
  border-radius: 6px;
  border: 1px solid var(--m-line);
}

.mkt-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 20px;
}

.mkt-card {
  background: var(--m-panel);
  border: 1px solid var(--m-line);
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: var(--m-shadow);
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}

.mkt-card:hover {
  border-color: var(--m-line-strong, #cccccc);
  transform: translateY(-2px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, .08), 0 8px 24px rgba(0, 0, 0, .06);
}

.mkt-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 650;
  color: var(--m-ink);
}

.mkt-card p {
  margin: 0 0 12px;
  font-size: 14px;
  max-width: none;
}

.mkt-card a.card-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--m-ink);
  text-decoration: none;
}

.mkt-card a.card-link:hover { text-decoration: underline; }

.mkt-callout {
  background: var(--m-bg-2);
  border: 1px solid var(--m-line);
  border-radius: 16px;
  padding: 20px 18px;
  margin: 24px 0;
}

.mkt-callout strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  color: var(--m-ink);
}

.mkt-callout p { margin: 0; font-size: 14.5px; }

.mkt-related {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--m-line);
}

.mkt-related h2 { font-size: 1.1rem; margin-bottom: 16px; }

.mkt-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mkt-link-grid a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--m-line);
  background: var(--m-panel);
  color: var(--m-muted);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}

.mkt-link-grid a:hover {
  border-color: var(--m-ink);
  color: var(--m-ink);
  background: var(--m-bg-2);
  text-decoration: none;
}

.mkt-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--m-panel);
  border: 1px solid var(--m-line);
  font-size: 14px;
  color: var(--m-muted);
  margin-top: 16px;
}

.mkt-status .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--m-subtle);
}

.mkt-status.ready .dot { background: var(--m-ink); }
.mkt-status.pending .dot { background: var(--m-muted); }

@media (min-width: 640px) {
  .mkt-wrap { padding-left: 28px; padding-right: 28px; }
  .mkt-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .mkt-cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
}
