/* vet.tc — shared design tokens */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700;800;900&family=Geist+Mono:wght@400;500;600&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --cream: #f4efe6;
  --cream-2: #ebe5d8;
  --cream-3: #e0d8c5;
  --ink: #141312;
  --ink-2: #2a2724;
  --ink-mute: #6b6660;
  --ink-faint: #a39d92;
  --paper: #faf7f0;
  --accent: #ff5a1f;
  --accent-2: #ff8a4c;
  --accent-tint: #ffe4d3;
  --green: #1f7a3a;
  --green-tint: #cfe6d3;
  --red: #c9351c;
  --blue: #2451c9;
  --line: #d8d2c2;
  --line-soft: #e4dec9;
}

.vet * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.vet {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-feature-settings: 'ss01' on, 'cv11' on;
  line-height: 1.4;
}

.vet .mono { font-family: 'Geist Mono', ui-monospace, monospace; }
.vet .serif { font-family: 'Instrument Serif', Georgia, serif; }

/* helpers */
.vet .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.vet .tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.vet .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  background: var(--cream-2);
  border: 1px solid var(--line);
  color: var(--ink-2);
  font-family: 'Geist Mono', monospace;
}

.vet .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  font-family: inherit;
}
.vet .btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.vet .btn-primary:hover { background: var(--accent); }
.vet .btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.vet .btn-ghost:hover { background: var(--cream-2); }
.vet .btn-accent {
  background: var(--accent);
  color: white;
}
.vet .btn-accent:hover { background: var(--ink); }

.vet .arrow::after {
  content: '→';
  display: inline-block;
  transition: transform 0.2s;
}
.vet .arrow:hover::after { transform: translateX(3px); }

/* fine grid bg */
.vet .gridbg {
  background-image:
    linear-gradient(to right, rgba(20,19,18,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20,19,18,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

/* mock UI shells */
.vet .mockcard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 24px 60px -20px rgba(20,19,18,0.18);
}
.vet .mockcard-flat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
}

/* animated dots/lines */
@keyframes vet-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
@keyframes vet-flow {
  0% { stroke-dashoffset: 60; }
  100% { stroke-dashoffset: 0; }
}
.vet .pulse { animation: vet-pulse 2s ease-in-out infinite; }
.vet .flow { animation: vet-flow 2.2s linear infinite; }

/* channel logos placeholders */
.vet .ch {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.04em;
}
.vet .ch-wa { background: #25D366; }
.vet .ch-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.vet .ch-fb { background: #1877F2; }
.vet .ch-sms { background: var(--ink); }
.vet .ch-tg { background: #2AABEE; }

/* Subtle scanline / texture */
.vet .noise {
  position: relative;
}
.vet .noise::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: radial-gradient(rgba(20,19,18,0.04) 1px, transparent 1px);
  background-size: 3px 3px;
}

/* Reset for inside artboard */
.vet h1, .vet h2, .vet h3, .vet h4, .vet p, .vet ul {
  margin: 0;
  padding: 0;
  font-weight: inherit;
}
.vet ul { list-style: none; }
.vet a { color: inherit; text-decoration: none; }

/* selectable text-wrap pretty */
.vet h1, .vet h2, .vet h3 { text-wrap: balance; }
.vet p { text-wrap: pretty; }
