@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root {
  --teal: #2D3E3E;
  --teal-soft: #EAEFEF;
  --mint: #5DCAA5;
  --ink: #1A2424;
  --grey: #6B7280;
  --white: #FFFFFF;
  --radius: 16px;
  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  cursor: url('assets/paw-cursor.png') 8 8, auto;
}

a, button, .btn, .menu-toggle, summary, .faq-item summary, .store-badge, .more-item {
  cursor: url('assets/paw-cursor.png') 8 8, pointer;
}

h1, h2, h3, .display {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.15;
  margin: 0;
}
h1, .serif-display {
  font-family: Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  font-weight: 300;
  letter-spacing: -0.005em;
}

a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #ECECEC;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 8px; }
.brand span {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--teal);
}
nav.main-nav { display: flex; align-items: center; gap: 32px; }
.logo-img { width: 34px; height: 34px; display: block; object-fit: contain; }
nav.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--grey);
  transition: color 0.2s;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--teal); }
.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
}
.nav-cta:hover { background: #233030; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; }

@media (max-width: 760px) {
  nav.main-nav { display: none; }
  .menu-toggle { display: block; }
  nav.main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    padding: 20px 24px 28px;
    border-bottom: 1px solid #ECECEC;
    gap: 18px;
  }
}

/* ---------- Sections ---------- */
section { padding: 96px 0; }
section.tight { padding: 64px 0; }
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 12px;
  display: block;
}
.section-bg { background: var(--teal-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s, background 0.2s;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: #233030; transform: translateY(-1px); }
.btn-outline { border: 1.5px solid var(--teal); color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  padding: 88px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { font-size: 48px; margin-bottom: 20px; }
.hero p.lead { font-size: 18px; color: var(--grey); max-width: 460px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-phone {
  justify-self: center;
  width: 280px;
  filter: drop-shadow(0 30px 50px rgba(45,62,62,0.18));
}
.paw-trail { display: none; }
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero h1 { font-size: 36px; }
}

/* ---------- Feature grid ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
@media (max-width: 760px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}
.card {
  background: var(--white);
  border: 1px solid #ECECEC;
  border-radius: var(--radius);
  padding: 32px;
}
.card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--teal-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card .icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { font-size: 15px; color: var(--grey); margin: 0; }

/* ---------- Section heading ---------- */
.section-head { max-width: 600px; margin-bottom: 8px; }
.section-head h2 { font-size: 34px; }
.section-head p { color: var(--grey); font-size: 16px; margin-top: 12px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Story page ---------- */
.story-block {
  max-width: 680px;
  margin: 0 auto;
}
.story-block p { font-size: 17px; color: var(--ink); margin-bottom: 22px; }
.tribute-card {
  background: var(--teal);
  color: var(--white);
  border-radius: 20px;
  padding: 48px;
  margin-top: 56px;
  text-align: center;
}
.tribute-card h3 { color: var(--white); font-size: 24px; margin-bottom: 4px; }
.tribute-card .sub { color: var(--mint); font-size: 14px; margin-bottom: 24px; }
.tribute-card p { color: rgba(255,255,255,0.88); font-size: 16px; max-width: 520px; margin: 0 auto 18px; }
.tribute-card .signoff { font-weight: 600; color: var(--white); margin-top: 20px; }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid #ECECEC;
  padding: 22px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--teal);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--mint);
  font-weight: 400;
}
.faq-item[open] summary::after { content: '–'; }
.faq-item p { color: var(--grey); margin-top: 12px; font-size: 15px; max-width: 640px; }

/* ---------- Download badges ---------- */
.store-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 12px;
  min-width: 180px;
}
.store-badge.disabled { opacity: 0.55; cursor: default; }
.store-badge svg { width: 26px; height: 26px; flex-shrink: 0; }
.store-badge .label { display: flex; flex-direction: column; }
.store-badge .label .small { font-size: 11px; opacity: 0.8; }
.store-badge .label .big { font-size: 16px; font-weight: 600; font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.2,.7,.3,1), transform 0.7s cubic-bezier(.2,.7,.3,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1.in-view { transition-delay: 0.1s; }
.reveal-delay-2.in-view { transition-delay: 0.2s; }
.reveal-delay-3.in-view { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Hero v2 ---------- */
.hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 900px 600px at 78% 18%, rgba(93,202,165,0.16), transparent 70%);
}
.hero .glow {
  position: absolute;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,62,62,0.07), transparent 70%);
  top: -180px; right: -120px;
  pointer-events: none;
}
.hero .wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero h1 { font-size: 56px; letter-spacing: -0.01em; margin-bottom: 22px; }
.hero p.lead { font-size: 19px; color: var(--grey); max-width: 460px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-actions .btn { font-size: 16px; padding: 16px 30px; }
.trust-line { margin-top: 28px; font-size: 13px; color: var(--grey); display: flex; align-items: center; gap: 8px; }
.trust-line svg { width: 16px; height: 16px; color: var(--mint); }

.device-shot {
  justify-self: center;
  width: 100%;
  max-width: 380px;
  position: relative;
}
.device-shot::after {
  content: '';
  position: absolute;
  inset: 6% 8%;
  background: var(--teal);
  filter: blur(50px);
  opacity: 0.16;
  z-index: -1;
  border-radius: 50%;
}
.device-shot img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 40px 60px rgba(26,36,36,0.25));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@media (prefers-reduced-motion: reduce) {
  .device-shot img { animation: none; }
}
@media (max-width: 860px) {
  .hero { padding: 92px 0 56px; }
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero h1 { font-size: 38px; }
  .device-shot { max-width: 280px; margin-top: 12px; }
}

/* ---------- Feature showcase (alternating, image-led) ---------- */
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid #ECECEC;
}
.showcase-row:last-child { border-bottom: none; }
.showcase-row.flip .showcase-text { order: 2; }
.showcase-row.flip .showcase-img { order: 1; }
.showcase-text .eyebrow { margin-bottom: 14px; }
.showcase-text h3 { font-size: 30px; margin-bottom: 14px; }
.showcase-text p { font-size: 16px; color: var(--grey); max-width: 420px; }
.showcase-img {
  position: relative;
  display: flex;
  justify-content: center;
}
.showcase-img::after {
  content: '';
  position: absolute;
  inset: 10% 18%;
  background: var(--mint);
  filter: blur(60px);
  opacity: 0.14;
  z-index: -1;
  border-radius: 50%;
}
.showcase-img img {
  width: 100%;
  max-width: 300px;
  filter: drop-shadow(0 30px 40px rgba(26,36,36,0.18));
  transition: transform 0.4s ease;
}
.showcase-img:hover img { transform: translateY(-6px); }
@media (max-width: 860px) {
  .showcase-row, .showcase-row.flip { grid-template-columns: 1fr; text-align: center; }
  .showcase-row.flip .showcase-text, .showcase-row.flip .showcase-img { order: unset; }
  .showcase-text p { margin-left: auto; margin-right: auto; }
  .showcase-text h3 { font-size: 25px; }
}

/* ---------- And more strip ---------- */
.more-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #ECECEC;
  border: 1px solid #ECECEC;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 8px;
}
.more-strip .more-item {
  background: var(--white);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.more-strip .more-item svg { width: 22px; height: 22px; color: var(--teal); }
.more-strip .more-item span { font-size: 14px; font-weight: 600; color: var(--ink); }
@media (max-width: 760px) { .more-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Tribute photo ---------- */
.tribute-card .photo-circle {
  width: 96px; height: 96px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.25);
}
.tribute-card .photo-circle img { width: 100%; height: 100%; object-fit: cover; display: block; }
footer {
  background: var(--teal);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 28px;
  position: relative;
  overflow: hidden;
}
footer .wrap { position: relative; z-index: 1; }
footer .foot-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
footer .brand span { color: var(--white); }
footer nav { display: flex; gap: 24px; flex-wrap: wrap; }
footer nav a { font-size: 14px; color: rgba(255,255,255,0.75); }
footer nav a:hover { color: var(--white); }
footer .bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 13px;
}
