/* PetGo web — styling derived from the investor deck's visual system.
   Deck motifs carried over: cyan uppercase eyebrow labels above teal headings,
   a short cyan rule as a brand mark, deep-teal filled panels with white text,
   pale-mint cards, and letterspaced uppercase taglines. */
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--pg-bg); color: var(--pg-text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .pg-logo { font-family: Poppins, Inter, sans-serif; letter-spacing: -.01em; }
h1, h2, h3, p, ul, figure { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }   /* height:auto or the HTML height attr squashes it */

/* ---------- deck motifs ---------- */
.pg-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--pg-accent-text); margin-bottom: 10px;
}
.pg-rule { width: 84px; height: 5px; background: var(--pg-accent); border-radius: 3px; }
.pg-tagline {
  font-size: 12.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--pg-on-brand-soft);
}

/* ---------- header ---------- */
.pg-header { background: var(--pg-surface); border-bottom: 1px solid var(--pg-border);
  position: sticky; top: 0; z-index: 20; }
.pg-header-inner { display: flex; align-items: center; gap: 16px; height: 70px; }
.pg-logo { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 700;
  color: var(--pg-brand); }
.pg-logo img { width: 34px; height: 34px; border-radius: 9px; }
.pg-header-actions { margin-left: auto; display: flex; gap: 12px; align-items: center; }

/* ---------- buttons ---------- */
.pg-btn { display: inline-flex; align-items: center; justify-content: center; height: 48px;
  padding: 0 26px; border-radius: 999px; font-size: 15px; font-weight: 600;
  border: 2px solid transparent; cursor: pointer; transition: background .15s, color .15s; }
.pg-btn-sm { height: 44px; padding: 0 18px; font-size: 14px; white-space: nowrap; }
.pg-btn-primary { background: var(--pg-brand); color: #fff; }
.pg-btn-primary:hover { background: var(--pg-brand-dark); }
.pg-btn-ghost { border-color: var(--pg-brand); color: var(--pg-brand); background: transparent; }
.pg-btn-ghost:hover { background: var(--pg-surface-soft); }
/* on a teal panel the ghost variant renders brand-on-brand (invisible) */
.pg-btn-onbrand { background: #fff; color: var(--pg-brand); border-color: #fff; }
.pg-btn-onbrand:hover { background: var(--pg-surface-soft); }
.pg-btn-onbrand-ghost { border-color: rgba(255,255,255,.7); color: #fff; background: transparent; }
.pg-btn-onbrand-ghost:hover { background: rgba(255,255,255,.14); }

/* ---------- hero (deck slide 1: teal field, white type, media right) ---------- */
.pg-hero { background: var(--pg-brand); border-radius: var(--pg-radius-lg); color: #fff;
  margin-top: 26px; padding: 62px 56px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 52px; align-items: center; }
.pg-hero h1 { font-size: clamp(32px, 4.1vw, 50px); line-height: 1.1; font-weight: 700;
  margin: 22px 0 18px; }
.pg-hero p.lede { font-size: 17px; color: var(--pg-on-brand-soft); max-width: 46ch; }
.pg-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 30px 0 26px; }
.pg-hero-media img { border-radius: var(--pg-radius-md); box-shadow: var(--pg-shadow-md); }

/* ---------- sections ---------- */
.pg-section { padding: 78px 0; }
.pg-section + .pg-section { padding-top: 0; }
.pg-section h2 { font-size: clamp(25px, 2.6vw, 33px); font-weight: 700; color: var(--pg-brand); }
.pg-section-head { margin-bottom: 30px; }

/* mint feature cards (deck stat-card treatment) */
.pg-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pg-card { background: var(--pg-surface-soft); border-radius: var(--pg-radius-md); padding: 28px 26px; }
.pg-card-num { width: 34px; height: 34px; border-radius: 999px; background: var(--pg-brand);
  color: #fff; font-size: 14px; font-weight: 700; display: flex; align-items: center;
  justify-content: center; margin-bottom: 15px; }
.pg-card h3 { font-size: 18px; font-weight: 700; color: var(--pg-brand); margin-bottom: 7px; }
.pg-card p { font-size: 14.5px; color: var(--pg-text-secondary); }

/* download block */
.pg-app { background: var(--pg-surface-soft); border-radius: var(--pg-radius-lg);
  padding: 54px 52px; display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.pg-app h2 { margin-bottom: 14px; }
.pg-app p { color: var(--pg-text-secondary); max-width: 46ch; }
.pg-stores { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.pg-store { display: inline-flex; align-items: center; gap: 9px; height: 52px; padding: 0 22px;
  border-radius: 12px; background: #101614; color: #fff; font-size: 15px; font-weight: 600; }
.pg-store:hover { background: #000; }
.pg-weblink { margin-top: 16px; font-size: 14px; }
.pg-weblink a { color: var(--pg-brand); font-weight: 700; border-bottom: 2px solid var(--pg-accent); }
.pg-devices { display: flex; gap: 14px; justify-content: center; align-items: flex-end; }
.pg-device img { width: 100%; border-radius: 18px; box-shadow: var(--pg-shadow-md); }
.pg-device { flex: 1 1 0; max-width: 190px; }
.pg-device.mid { margin-bottom: 26px; }

/* business strip (deck filled-panel treatment) */
.pg-biz { background: var(--pg-brand); color: #fff; border-radius: var(--pg-radius-lg);
  padding: 34px 40px; display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.pg-biz h3 { font-size: 20px; font-weight: 700; }
.pg-biz p { font-size: 14.5px; color: var(--pg-on-brand-soft); margin-top: 5px; }

/* footer */
.pg-footer { margin-top: 70px; border-top: 1px solid var(--pg-border); padding: 40px 0 26px; }
.pg-footer-inner { display: flex; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.pg-footer-brand p { margin-top: 11px; font-size: 13.5px; color: var(--pg-text-secondary); }
.pg-footer-links { margin-left: auto; display: flex; flex-wrap: wrap; gap: 4px 26px;
  font-size: 13.5px; color: var(--pg-text-secondary); }
.pg-footer-links a { min-height: 44px; display: flex; align-items: center; }
.pg-footer-links a:hover { color: var(--pg-brand); }
.pg-footer-base { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--pg-border);
  font-size: 12.5px; color: var(--pg-text-secondary); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .pg-hero { grid-template-columns: 1fr; padding: 46px 32px; gap: 34px; }
  .pg-app { grid-template-columns: 1fr; padding: 42px 30px; gap: 34px; }
  .pg-cards { grid-template-columns: 1fr; }
}
@media (max-width: 860px) { .pg-biz-more { display: none; } }
@media (max-width: 600px) {
  .pg-header-inner { gap: 10px; height: 62px; }
  .pg-header-actions { gap: 8px; }
  .pg-btn-sm { height: 40px; padding: 0 13px; font-size: 13px; }
  .pg-hero { padding: 38px 22px; margin-top: 18px; border-radius: var(--pg-radius-md); }
  .pg-section { padding: 48px 0; }
  .pg-app { padding: 34px 22px; }
  .pg-biz { padding: 26px 22px; }
  .pg-biz .pg-btn { width: 100%; margin-left: 0 !important; }
  .pg-footer-links { margin-left: 0; }
}
