/* Meet Pup — Landing / Support / Legal Site */
:root {
  --brand: #ED7D3A;
  --brand-dark: #C55E1F;
  --brand-soft: #FDF3EB;
  --ink: #1F1F1F;
  --ink-muted: #555;
  --ink-faint: #888;
  --bg: #FFFDFB;
  --card: #FFFFFF;
  --border: #EFE7DF;
  --shadow: 0 4px 24px rgba(237, 125, 58, 0.08);
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "SF Pro Display", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 251, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
}
.brand a { color: var(--ink); }
.brand a:hover { text-decoration: none; }
.brand .paw {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--brand);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 2px 8px rgba(237,125,58,0.35);
}
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}
.nav-links a {
  color: var(--ink-muted);
  font-weight: 500;
  font-size: 15px;
}
.nav-links a:hover { color: var(--brand); text-decoration: none; }

/* ---------- Hero ---------- */
.hero {
  padding: 72px 24px 40px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-copy .eyebrow {
  display: inline-block;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 52px;
  line-height: 1.05;
  margin: 0 0 20px 0;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.hero h1 span { color: var(--brand); }
.hero p.lead {
  font-size: 19px;
  color: var(--ink-muted);
  margin: 0 0 32px 0;
  max-width: 520px;
}
.badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.appstore-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.appstore-badge:hover { text-decoration: none; transform: translateY(-1px); transition: transform 0.2s ease; }
.appstore-badge .apple { width: 22px; height: 22px; flex-shrink: 0; }
.appstore-badge small { display: block; font-size: 11px; font-weight: 500; opacity: 0.75; }
.pill {
  display: inline-block;
  background: #fff;
  color: var(--ink-muted);
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.phone-frame {
  width: 100%;
  max-width: 320px;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(237, 125, 58, 0.22), 0 8px 20px rgba(0,0,0,0.08);
  border: 8px solid #1a1a1a;
  background: #1a1a1a;
  transform: rotate(-2deg);
}
.phone-frame img { display: block; width: 100%; }

/* ---------- Features ---------- */
.section {
  padding: 72px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 {
  font-size: 36px;
  margin: 0 0 12px 0;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.section-title p {
  color: var(--ink-muted);
  font-size: 17px;
  margin: 0;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--brand-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.feature h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 700;
}
.feature p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 15px;
}

/* ---------- Showcase ---------- */
.showcase {
  background: linear-gradient(180deg, var(--brand-soft) 0%, #FFFDFB 100%);
  padding: 72px 24px;
}
.showcase-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.screens {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}
.screen {
  text-align: center;
}
.screen .phone-frame {
  max-width: 260px;
  margin: 0 auto 20px;
  transform: none;
}
.screen h4 {
  margin: 0 0 6px 0;
  font-size: 17px;
  font-weight: 700;
}
.screen p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14px;
  padding: 0 12px;
}

/* ---------- CTA ---------- */
.cta-band {
  background: var(--brand);
  color: white;
  text-align: center;
  padding: 64px 24px;
}
.cta-band h2 {
  font-size: 34px;
  margin: 0 0 12px 0;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.cta-band p {
  font-size: 17px;
  opacity: 0.92;
  margin: 0 0 28px 0;
}
.cta-band .appstore-badge {
  background: #000;
}

/* ---------- Footer ---------- */
.footer {
  background: #1a1a1a;
  color: #999;
  padding: 48px 24px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer h5 {
  color: #fff;
  font-size: 14px;
  margin: 0 0 14px 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.footer a {
  color: #ccc;
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}
.footer a:hover { color: var(--brand); text-decoration: none; }
.footer .brand-block .brand-name {
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.footer .brand-block p { color: #999; font-size: 14px; margin: 0; max-width: 280px; }
.footer-bottom {
  max-width: 1100px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid #333;
  text-align: center;
  font-size: 13px;
  color: #777;
}

/* ---------- Content pages (support / privacy / terms) ---------- */
.content {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}
.content .back {
  color: var(--ink-faint);
  font-size: 14px;
  margin-bottom: 24px;
  display: inline-block;
}
.content .back:hover { color: var(--brand); }
.content h1 {
  font-size: 40px;
  margin: 0 0 8px 0;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.content .meta {
  color: var(--ink-faint);
  font-size: 14px;
  margin-bottom: 24px;
}
.content .intro {
  background: var(--brand-soft);
  border-left: 4px solid var(--brand);
  padding: 16px 20px;
  border-radius: 10px;
  margin: 0 0 32px 0;
  color: #333;
  font-size: 15px;
}
.content h2 {
  font-size: 22px;
  margin: 36px 0 12px 0;
  font-weight: 700;
  color: var(--ink);
}
.content h3 {
  font-size: 17px;
  margin: 24px 0 8px 0;
  font-weight: 700;
}
.content p {
  font-size: 15.5px;
  color: #333;
  margin: 0 0 12px 0;
}
.content p.mono-list {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 14px;
}
.content ul {
  padding-left: 22px;
  margin: 0 0 16px 0;
}
.content ul li {
  margin-bottom: 8px;
  font-size: 15.5px;
  color: #333;
}

/* Support-specific FAQ */
.faq {
  margin: 0 0 24px 0;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 12px;
}
.faq-item h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
  color: var(--ink);
}
.faq-item p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 15px;
}

.contact-card {
  background: var(--brand-soft);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  margin: 24px 0;
}
.contact-card h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
}
.contact-card p {
  margin: 0 0 16px 0;
  color: var(--ink-muted);
}
.contact-card a.mail-btn {
  display: inline-block;
  background: var(--brand);
  color: white;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
}
.contact-card a.mail-btn:hover { background: var(--brand-dark); text-decoration: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px 24px;
    gap: 32px;
    text-align: center;
  }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero h1 { font-size: 40px; }
  .badges { justify-content: center; }
  .phone-frame { transform: none; }
  .features { grid-template-columns: 1fr; }
  .screens { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 48px 24px; }
  .section-title h2 { font-size: 28px; }
}

@media (max-width: 540px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 14px; }
  .hero h1 { font-size: 34px; }
  .hero p.lead { font-size: 16px; }
  .footer-inner { grid-template-columns: 1fr; }
  .content h1 { font-size: 30px; }
  .content h2 { font-size: 19px; }
}
