/* Voocie Go Pages — Design Tokens
   Palette derived from voocie.com (Nala's Bernese tri-color).
   Fonts: Bricolage Grotesque (display), Instrument Sans (body), IBM Plex Mono (data).
   These fonts are served from voocie.com's /fonts/ directory. */

@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('https://voocie.com/fonts/BricolageGrotesque-800.woff2') format('woff2');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Instrument Sans';
  src: url('https://voocie.com/fonts/InstrumentSans-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Instrument Sans';
  src: url('https://voocie.com/fonts/InstrumentSans-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Instrument Sans';
  src: url('https://voocie.com/fonts/InstrumentSans-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('https://voocie.com/fonts/IBMPlexMono-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Mono';
  src: url('https://voocie.com/fonts/IBMPlexMono-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}

:root {
  --paper: #FFFFFF;
  --cream: #F7F0E7;
  --fawn: #E7DBCB;
  --coal: #131010;
  --coal-soft: #57493D;
  --rust: #B9815E;
  --rust-deep: #996A52;
  --flag: #B3271B;
  --white: #FFFFFF;
  --display: 'Bricolage Grotesque', Georgia, serif;
  --body: 'Instrument Sans', -apple-system, 'Segoe UI', sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--coal);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rust-deep); }
a:hover { color: var(--rust); }
:focus-visible { outline: 3px solid var(--rust); outline-offset: 2px; border-radius: 4px; }

/* ---- layout ---- */
.go-wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.go-wrap-wide { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---- nav ---- */
.go-nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1080px; margin: 0 auto; padding: 18px 24px;
}
.go-nav .wordmark {
  font-family: var(--display); font-weight: 800; font-size: 1.4rem;
  color: var(--coal); text-decoration: none; letter-spacing: -0.02em;
}
.go-nav .wordmark .paw { color: var(--rust); }
.go-nav-links { display: flex; align-items: center; gap: 20px; }
.go-nav-links a {
  font-size: .92rem; font-weight: 500; text-decoration: none; color: var(--coal-soft);
}
.go-nav-links a:hover { color: var(--coal); }
.go-nav-links .btn-start {
  background: var(--rust); color: var(--white); padding: 9px 22px;
  border-radius: 999px; font-weight: 600; transition: background .15s;
}
.go-nav-links .btn-start:hover { background: var(--rust-deep); }

/* ---- page header / hero ---- */
.go-hero {
  padding: 56px 0 40px; text-align: center;
}
.go-hero .eyebrow {
  font-family: var(--mono); font-size: .76rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--rust-deep);
  margin-bottom: 14px;
}
.go-hero h1 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 16px;
}
.go-hero .subtitle {
  font-size: 1.1rem; color: var(--coal-soft); max-width: 36rem; margin: 0 auto;
}

/* ---- article body ---- */
.go-article { padding: 0 0 64px; }
.go-article h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  letter-spacing: -0.015em; margin: 40px 0 14px;
  padding-top: 12px; border-top: 2px solid var(--fawn);
}
.go-article h3 {
  font-family: var(--display); font-weight: 800;
  font-size: 1.15rem; margin: 28px 0 10px;
}
.go-article p { margin-bottom: 16px; }
.go-article ul, .go-article ol { margin: 0 0 16px 20px; }
.go-article li { margin-bottom: 8px; }
.go-article strong { color: var(--coal); }

/* callout box */
.go-callout {
  background: var(--cream); border-left: 4px solid var(--rust);
  border-radius: 0 14px 14px 0; padding: 18px 22px; margin: 24px 0;
  font-size: .95rem;
}
.go-callout strong { display: block; margin-bottom: 4px; }

/* brand intro bar — canonical message */
.go-brand-intro {
  background: var(--cream); border-bottom: 1.5px solid var(--fawn);
  padding: 16px 0; font-size: .93rem; color: var(--coal-soft);
  line-height: 1.55;
}
.go-brand-intro p { margin: 0; max-width: 680px; }
.go-brand-intro strong, .go-brand-intro em { color: var(--coal); }

/* vet disclaimer */
.go-vet-note {
  background: #FFF8F0; border: 1.5px solid var(--fawn);
  border-radius: 14px; padding: 16px 20px; margin: 28px 0;
  font-size: .88rem; color: var(--coal-soft);
}
.go-vet-note::before { content: '🩺 '; }

/* ---- related links ---- */
.go-related {
  background: var(--cream); border-radius: 14px;
  padding: 20px 24px; margin: 32px 0;
}
.go-related h2 {
  font-family: var(--display); font-size: 1.1rem;
  margin: 0 0 12px; color: var(--coal);
}
.go-related ul {
  list-style: none; padding: 0; margin: 0 0 12px;
}
.go-related li {
  padding: 6px 0;
}
.go-related li + li {
  border-top: 1px solid var(--fawn);
}
.go-related a {
  color: var(--bernese); text-decoration: none;
  font-weight: 500;
}
.go-related a:hover { text-decoration: underline; }
.go-related > p { margin: 8px 0 0; font-size: .92rem; }
.go-related > p a { font-weight: 600; }

/* ---- comparison table ---- */
.go-compare-table {
  width: 100%; border-collapse: collapse; margin: 28px 0;
  font-size: .92rem;
}
.go-compare-table th {
  font-family: var(--mono); font-size: .72rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  text-align: left; padding: 10px 14px;
  background: var(--cream); color: var(--coal-soft);
  border-bottom: 2px solid var(--fawn);
}
.go-compare-table td {
  padding: 12px 14px; border-bottom: 1px solid var(--fawn);
  vertical-align: top;
}
.go-compare-table tr:last-child td { border-bottom: none; }
.go-compare-table .check { color: #2D7D3A; font-weight: 600; }
.go-compare-table .cross { color: var(--flag); }
.go-compare-table .partial { color: var(--rust); }
.go-compare-table .highlight-col { background: rgba(169, 114, 75, .06); }

/* ---- CTA strip ---- */
.go-cta {
  background: var(--coal); color: var(--cream); border-radius: 20px;
  padding: 36px 32px; margin: 40px 0; text-align: center;
}
.go-cta h3 {
  font-family: var(--display); font-weight: 800; font-size: 1.5rem;
  color: var(--white); margin-bottom: 10px; letter-spacing: -0.015em;
}
.go-cta p { color: #D8CCBB; margin-bottom: 18px; }
.go-cta .btn-start {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--rust); color: var(--white); padding: 14px 30px;
  border-radius: 999px; font-family: var(--body); font-weight: 600;
  font-size: 1.05rem; text-decoration: none; border: none; cursor: pointer;
  transition: background .15s, transform .12s;
}
.go-cta .btn-start:hover { background: var(--rust-deep); }
.go-cta .btn-start:active { transform: scale(.98); }

/* ---- footer ---- */
.go-footer {
  border-top: 1.5px solid var(--fawn); padding: 28px 0;
  text-align: center; font-size: .82rem; color: var(--coal-soft);
}
.go-footer a { color: var(--rust-deep); }

/* ---- checklist (interactive) ---- */
.go-checklist { list-style: none; margin: 0 0 20px; padding: 0; }
.go-checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--fawn);
}
.go-checklist input[type="checkbox"] {
  width: 20px; height: 20px; margin-top: 2px; accent-color: var(--rust);
  flex-shrink: 0; cursor: pointer;
}
.go-checklist label { cursor: pointer; }

/* ---- responsive ---- */
@media (max-width: 600px) {
  .go-nav { padding: 14px 16px; }
  .go-nav-links { gap: 12px; }
  .go-hero { padding: 36px 0 28px; }
  .go-compare-table { font-size: .82rem; }
  .go-compare-table th, .go-compare-table td { padding: 8px 10px; }
  .go-cta { padding: 28px 20px; border-radius: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
