:root {
  --bg: #FFFBF5;
  --bg-muted: #FFF4E6;
  --ink: #1F1B16;
  --ink-soft: #5A524A;
  --ink-mute: #8A8077;
  --accent: #FF6B6B;
  --accent-soft: #FFE5E0;
  --accent-dark: #E94560;
  --peach: #FFD6A5;
  --cream: #FFF1DE;
  --card: #FFFFFF;
  --border: #F0E4D2;
  --border-strong: #E8D9C1;
  --shadow-sm: 0 2px 8px rgba(31, 27, 22, 0.04), 0 1px 2px rgba(31, 27, 22, 0.04);
  --shadow-md: 0 12px 32px rgba(31, 27, 22, 0.06), 0 2px 8px rgba(31, 27, 22, 0.04);
  --shadow-lg: 0 28px 60px rgba(31, 27, 22, 0.08), 0 4px 12px rgba(31, 27, 22, 0.05);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; display: block; }

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

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}

h2 { font-size: clamp(28px, 4vw, 44px); line-height: 1.15; }
h3 { font-size: 20px; line-height: 1.3; }
h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink); }

p { margin: 0; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.01em;
}

.accent { color: var(--accent); font-style: italic; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align: center;
  line-height: 1.2;
}
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--cream); border-color: var(--ink); }

.btn-meta {
  font-size: 12px;
  font-weight: 500;
  opacity: .7;
  margin-left: 4px;
}

/* ============ Nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 251, 245, 0.88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
}
.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--ink); }

/* ============ Hero ============ */
.hero {
  padding: 80px 0 96px;
  background:
    radial-gradient(900px 450px at 10% 0%, var(--cream) 0%, transparent 60%),
    radial-gradient(800px 550px at 95% 15%, var(--accent-soft) 0%, transparent 55%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 22px; }
.display {
  font-family: 'Fraunces', serif;
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  font-weight: 800;
}
.lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-mute);
  flex-wrap: wrap;
}
.stars { color: #F4A836; letter-spacing: 2px; font-size: 15px; }

/* Hero product card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}
.hero-card {
  width: 100%;
  max-width: 440px;
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.hero-card-header .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #FFB6A3;
}
.hero-card-header .dot:nth-child(2) { background: #FFD78A; }
.hero-card-header .dot:nth-child(3) { background: #B8E0B0; }
.hero-card-title {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mute);
  font-family: 'Fraunces', serif;
}
.hero-card-body { padding: 22px; }
.msg {
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 12px;
}
.msg-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  opacity: .7;
}
.msg p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--ink); }
.msg-before { background: #F6F0E6; }
.msg-before p { color: var(--ink-mute); }
.msg-after {
  background: linear-gradient(135deg, var(--accent-soft), var(--cream));
  border: 1px solid var(--accent-soft);
}
.msg-after .msg-label { color: var(--accent-dark); opacity: 1; }
.quick-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.chip {
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border-strong);
  color: var(--ink-soft);
  cursor: pointer;
}
.chip-primary { background: var(--ink); color: #fff; border-color: var(--ink); }

.koby-sticker {
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 92px;
  height: 92px;
  background: var(--cream);
  border: 4px solid var(--card);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.koby-sticker img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

/* ============ Trust bar ============ */
.trust {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.trust-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 18px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 16px;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-soft);
}
.trust-row span:nth-child(even) { color: var(--border-strong); }

/* ============ Generic section ============ */
.section { padding: 96px 0; }
.section-muted { background: var(--bg-muted); }
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head .eyebrow { margin-bottom: 16px; }
.section-head h2 { margin-bottom: 14px; }
.section-sub {
  font-size: 17px;
  color: var(--ink-soft);
}

/* ============ Steps ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 18px;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: 15px; }

/* ============ Bento (features) ============ */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bento-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.bento-icon {
  width: 84px;
  height: 84px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(0 6px 14px rgba(31, 27, 22, 0.12));
}
.bento-card h3 { margin-bottom: 10px; }
.bento-card p { font-size: 15px; }

/* ============ Koby section ============ */
.section-koby {
  background: linear-gradient(180deg, var(--bg) 0%, var(--cream) 100%);
  padding: 96px 0;
}
.koby-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.koby-photo { display: flex; justify-content: center; }
.koby-photo-frame {
  width: 320px;
  height: 320px;
  max-width: 100%;
  background: var(--accent-soft);
  border: 8px solid var(--card);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.koby-photo-frame img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

/* Landscape photo frame (polaroid-style card) */
.koby-photo-frame.has-photo {
  width: 100%;
  max-width: 520px;
  height: auto;
  aspect-ratio: auto;
  background: var(--card);
  padding: 14px 14px 44px;
  border: none;
  border-radius: 18px;
  overflow: visible;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
  transition: transform 0.3s ease;
  display: block;
}
.koby-photo-frame.has-photo::after {
  content: '"Good boy."';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  text-align: center;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--ink-soft);
  pointer-events: none;
}
.koby-photo-frame.has-photo:hover {
  transform: rotate(0deg) scale(1.02);
}
.koby-photo-frame.has-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}
.koby-copy .eyebrow { margin-bottom: 16px; }
.koby-copy h2 { margin-bottom: 18px; }
.koby-copy p { font-size: 17px; margin-bottom: 16px; }
.koby-pullquote {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--accent-dark);
  border-left: 3px solid var(--accent);
  padding-left: 18px;
  margin-top: 24px !important;
}

/* ============ Pricing ============ */
.early-bird-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto 28px;
  padding: 12px 20px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-md);
}
.early-bird-banner strong { color: var(--peach); font-weight: 700; }
.eb-icon { font-size: 16px; }

.pricing-single {
  max-width: 520px;
  margin: 0 auto;
}
.billing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.billing-toggle {
  display: inline-flex;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
  box-shadow: var(--shadow-sm);
  gap: 4px;
}
.billing-opt {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  background: transparent;
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .15s ease, color .15s ease;
  white-space: nowrap;
}
.billing-opt:hover { color: var(--ink); }
.billing-opt.is-active {
  background: var(--ink);
  color: #fff;
}
.save-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--peach);
  color: var(--ink);
  letter-spacing: 0.02em;
}
.billing-opt.is-active .save-badge {
  background: var(--accent);
  color: #fff;
}

.plan {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-md);
}
.plan-hero {
  background: linear-gradient(180deg, var(--card) 0%, var(--cream) 100%);
  border: 2px solid var(--accent-soft);
}
.plan-ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(255, 107, 107, 0.35);
  white-space: nowrap;
}
.plan-head { text-align: center; margin-bottom: 20px; }
.plan-head h3 { font-size: 28px; margin-bottom: 6px; }
.plan-tag { font-size: 14px; color: var(--ink-mute); }
.plan-price {
  text-align: center;
  padding: 18px 0 24px;
  margin-bottom: 28px;
  border-bottom: 1px dashed var(--border-strong);
}
.price-row {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.price-old {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--ink-mute);
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
}
.price {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.per {
  font-size: 15px;
  color: var(--ink-mute);
  font-weight: 500;
}
.price-note {
  font-size: 13px;
  color: var(--accent-dark);
  margin-top: 12px;
  font-weight: 500;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.plan-features li {
  font-size: 15px;
  color: var(--ink-soft);
  padding: 9px 0 9px 28px;
  position: relative;
  line-height: 1.5;
}
.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}
.plan-foot {
  text-align: center;
  font-size: 13px;
  color: var(--ink-mute);
  margin-top: 14px;
}
[data-price][hidden] { display: none; }

/* ============ Download ============ */
.download-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
  max-width: 820px;
  margin: 0 auto;
}
.download-box .eyebrow { margin-bottom: 14px; }
.download-box h2 { margin-bottom: 10px; }
.download-box .section-sub { margin-bottom: 32px; }
.download-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.download-btns .btn {
  min-width: 220px;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.download-btns .btn-meta {
  display: block;
  margin-left: 0;
  font-size: 12px;
  opacity: 0.75;
}
.download-meta {
  font-size: 13px;
  color: var(--ink-mute);
}

/* ============ FAQ ============ */
.faq-container { max-width: 780px; margin: 0 auto; }
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: box-shadow .2s ease;
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "−"; }
.faq p {
  margin-top: 12px;
  font-size: 15px;
  color: var(--ink-soft);
}

/* ============ Final CTA ============ */
.section-cta {
  padding: 96px 0 112px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--accent-soft) 100%);
}
.cta-box {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.cta-box h2 { margin-bottom: 14px; }
.cta-box p { font-size: 18px; margin-bottom: 28px; }
.cta-paws {
  margin-top: 32px;
  font-size: 24px;
  letter-spacing: 12px;
  opacity: .6;
}

/* ============ Footer ============ */
.footer {
  background: var(--ink);
  color: #E8DFD3;
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand-mark { width: 38px; height: 38px; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand {
  color: #fff;
  margin-bottom: 14px;
}
.footer-tag {
  color: #9A9086;
  font-size: 14px;
  max-width: 300px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer-cols h4 { color: #fff; margin-bottom: 14px; }
.footer-cols div a {
  display: block;
  font-size: 14px;
  color: #9A9086;
  padding: 5px 0;
}
.footer-cols div a:hover { color: #fff; }
.footer-bottom {
  padding-top: 24px;
  font-size: 13px;
  color: #7A7066;
}

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .section { padding: 72px 0; }
  .hero { padding: 64px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-copy { text-align: center; }
  .hero-copy .lede { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { min-height: auto; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .koby-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .koby-photo-frame { width: 260px; height: 260px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .nav-links { display: none; }
  .nav-inner { padding-top: 12px; padding-bottom: 12px; }
  .brand { font-size: 20px; }
  .brand-mark { width: 36px; height: 36px; }
  .hero { padding: 56px 0 72px; }
  .lede { font-size: 16px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .steps { grid-template-columns: 1fr; gap: 16px; }
  .bento { grid-template-columns: 1fr; gap: 16px; }
  .trust-row { font-size: 16px; gap: 10px 14px; }
  .plan { padding: 40px 26px; }
  .price { font-size: 54px; }
  .price-old { font-size: 24px; }
  .download-box { padding: 48px 24px; }
  .download-btns { flex-direction: column; }
  .download-btns .btn { width: 100%; min-width: 0; }
  .section-cta { padding: 72px 0 88px; }
  .cta-box p { font-size: 16px; }
  .koby-photo-frame { width: 220px; height: 220px; }
  .koby-copy p { font-size: 16px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .brand-name { font-size: 18px; }
  .btn-lg { padding: 14px 22px; font-size: 15px; }
  .hero-card-body { padding: 18px; }
  .koby-sticker { width: 78px; height: 78px; bottom: -6px; right: -6px; }
  .koby-sticker-fallback { font-size: 36px; }
  .faq details { padding: 18px 20px; }
  .faq summary { font-size: 16px; }
  .early-bird-banner { font-size: 13px; padding: 10px 16px; }
  .billing-opt { padding: 9px 16px; font-size: 13px; }
  .save-badge { font-size: 10px; padding: 2px 6px; }
  .plan { padding: 36px 22px; }
  .plan-head h3 { font-size: 24px; }
  .price { font-size: 48px; }
  .download-box { padding: 40px 22px; }
}
