/* ═══════════════════════════════════════════════════════════════
   Peepbox marketing site — shared stylesheet
   Brand: warm cream + signal orange + deep brown
   Type:  Fraunces (display serif) + DM Sans (body)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --cream:        #FDF6EE;
  --cream-2:      #F8EFE0;
  --cream-3:      #F1E6D2;
  --border:       #F0E4D0;
  --border-soft:  #F5EDE0;
  --orange:       #FF6B35;
  --orange-deep:  #E5521B;
  --orange-soft:  #FFE2D2;
  --brown:        #2D1B00;
  --brown-soft:   #5C4A2E;
  --brown-mute:   #8B7860;
  --white:        #FFFFFF;
  --green:        #3F9D5C;
  --shadow-sm:    0 1px 2px rgba(45, 27, 0, 0.06);
  --shadow-md:    0 8px 24px rgba(45, 27, 0, 0.08);
  --shadow-lg:    0 24px 60px rgba(45, 27, 0, 0.12);
  --shadow-orange: 0 18px 40px rgba(255, 107, 53, 0.25);
  --radius-sm:    10px;
  --radius:       16px;
  --radius-lg:    24px;
  --radius-pill:  999px;
  --container:    1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--brown-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "SOFT" 50, "WONK" 1;
  color: var(--brown);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
h1 { font-size: clamp(40px, 6vw, 76px); }
h2 { font-size: clamp(32px, 4.2vw, 52px); }
h3 { font-size: clamp(22px, 2.4vw, 28px); line-height: 1.2; }
h4 { font-size: 18px; font-weight: 600; }

p { font-size: 17px; color: var(--brown-soft); line-height: 1.65; }
a  { color: var(--orange-deep); text-decoration: none; }
a:hover { color: var(--orange); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-deep);
  background: var(--orange-soft);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.muted { color: var(--brown-mute); }
.center { text-align: center; }

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
              background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-deep);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}
.btn-secondary:hover {
  background: var(--brown);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-ghost { background: transparent; color: var(--brown); }
.btn-ghost:hover { color: var(--orange-deep); }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ─── Nav ─────────────────────────────────────────────────────── */
nav.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(253, 246, 238, 0.78);
  backdrop-filter: saturate(140%) blur(20px);
  -webkit-backdrop-filter: saturate(140%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
nav.site-nav.scrolled { border-bottom-color: var(--border); }
nav.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--brown);
}
.nav-logo svg { width: 38px; height: 38px; display: block; }
.nav-logo span {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--brown);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a:not(.btn) {
  font-size: 15px;
  font-weight: 500;
  color: var(--brown);
}
.nav-links a:not(.btn):hover { color: var(--orange-deep); }
.nav-links .btn { padding: 10px 22px; font-size: 14px; }

@media (max-width: 720px) {
  .nav-links a:not(.btn) { display: none; }
  nav.site-nav .container { height: 64px; }
}

/* ─── Hero ────────────────────────────────────────────────────── */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(255, 107, 53, 0.08), transparent 60%),
    radial-gradient(40% 30% at 85% 20%, rgba(255, 217, 61, 0.10), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; text-align: center; }
.hero h1 { max-width: 14ch; margin: 0 auto 24px; }
.hero h1 em {
  font-style: italic;
  color: var(--orange);
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}
.hero .lead {
  font-size: clamp(18px, 1.6vw, 21px);
  max-width: 620px;
  margin: 0 auto 40px;
  color: var(--brown-soft);
}
.hero-declaration {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: rgba(45, 27, 0, 0.85);
  letter-spacing: 0.01em;
  max-width: 600px;
  margin: 24px auto 32px;
  line-height: 1.5;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

/* mascot row */
.mascot-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.mascot {
  position: relative;
  text-align: center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mascot:hover { transform: translateY(-10px) rotate(-2deg); }
.mascot svg { display: block; width: 88px; height: 88px; }
.mascot .label {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--brown-mute);
  background: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  white-space: nowrap;
}
.float-1 { animation: float 5s ease-in-out infinite; }
.float-2 { animation: float 5s ease-in-out 0.6s infinite; }
.float-3 { animation: float 5s ease-in-out 1.2s infinite; }
.float-4 { animation: float 5s ease-in-out 1.8s infinite; }
.float-5 { animation: float 5s ease-in-out 2.4s infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ─── Sections / shared layout ────────────────────────────────── */
section { padding: 100px 0; }
section.alt { background: var(--cream-2); border-block: 1px solid var(--border); }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-header p { font-size: 19px; margin-top: 16px; }

/* ─── Steps ───────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.step:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 300;
  font-style: italic;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.step h3 { margin-bottom: 12px; color: var(--brown); }
.step p { font-size: 16px; }

/* ─── Use-case grid ───────────────────────────────────────────── */
.use-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.use-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.use-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}
.use-card .icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--orange-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.use-card h3 { font-size: 22px; margin-bottom: 8px; }
.use-card p { font-size: 15.5px; }

/* ─── Margin callout ──────────────────────────────────────────── */
.peeps-callout {
  text-align: center;
  margin: 80px 0;
  padding: 0 20px;
}
.peeps-callout p {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--orange);
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  letter-spacing: -0.01em;
  transform: rotate(-1deg);
  line-height: 1.1;
}

/* ─── Trust strip ─────────────────────────────────────────────── */
.trust { text-align: center; }
.trust .logos {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.trust .logo-stub {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--brown-mute);
  letter-spacing: -0.01em;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.trust .logo-stub:hover { opacity: 1; color: var(--brown); }
.testimonial {
  max-width: 760px;
  margin: 56px auto 0;
  text-align: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 26px;
  line-height: 1.4;
  color: var(--brown);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.testimonial::before, .testimonial::after { color: var(--orange); }
.testimonial::before { content: '"'; }
.testimonial::after  { content: '"'; }
.testimonial-author {
  display: block;
  margin-top: 20px;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  color: var(--brown-mute);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── CTA box ─────────────────────────────────────────────────── */
.cta-box {
  background: linear-gradient(135deg, #2D1B00 0%, #4A2E00 100%);
  border-radius: var(--radius-lg);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before, .cta-box::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--orange);
  filter: blur(80px);
  opacity: 0.4;
}
.cta-box::before { top: -100px; right: -80px; width: 320px; height: 320px; }
.cta-box::after  { bottom: -120px; left: -100px; width: 360px; height: 360px; opacity: 0.25; }
.cta-box h2 { color: var(--cream); margin-bottom: 16px; position: relative; }
.cta-box p  { color: rgba(253, 246, 238, 0.75); margin-bottom: 36px; font-size: 19px; position: relative; }
.cta-box .btn-primary { position: relative; }

/* ─── Footer ──────────────────────────────────────────────────── */
footer.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}
footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
footer .col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brown-mute);
  margin-bottom: 16px;
}
footer .col a {
  display: block;
  font-size: 15px;
  color: var(--brown);
  margin-bottom: 10px;
  font-weight: 500;
}
footer .col a:hover { color: var(--orange-deep); }
footer .brand-col p {
  font-size: 14px;
  color: var(--brown-mute);
  max-width: 280px;
  margin-top: 12px;
}
footer .legal {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--brown-mute);
}
@media (max-width: 760px) {
  footer .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ─── Pricing page ────────────────────────────────────────────── */
.page-hero { padding: 150px 0 60px; text-align: center; }
.page-hero h1 { margin-bottom: 20px; }
.page-hero .lead { font-size: 19px; max-width: 600px; margin: 0 auto; }
.billing-toggle {
  display: inline-flex;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 5px;
  gap: 4px;
  margin-top: 36px;
  box-shadow: var(--shadow-sm);
}
.billing-toggle button {
  border: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--brown-mute);
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s ease;
}
.billing-toggle button.active {
  background: var(--brown);
  color: var(--cream);
}
.save-tag {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  margin-left: 8px;
  vertical-align: 2px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 880px;
  margin: 60px auto 0;
  align-items: stretch;
}
@media (max-width: 820px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; }
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.price-card .checkout-btn { margin-top: auto; }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured {
  border-color: var(--orange);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.18);
}
.price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}
.price-card h3 { font-family: 'Fraunces', serif; font-size: 28px; margin-bottom: 8px; }
.price-card .tagline { font-size: 15px; color: var(--brown-mute); margin-bottom: 28px; }
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}
.price-amount .num {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 500;
  color: var(--brown);
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-amount .per { font-size: 16px; font-weight: 500; color: var(--brown-mute); }
.price-billed { font-size: 13px; color: var(--brown-mute); margin-bottom: 28px; }
.price-features {
  list-style: none;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--brown-soft);
  padding: 9px 0;
}
.price-features li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--orange-soft);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='%23FF6B35' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 13.2 4.8 10l-1.4 1.4L8 16l9-9-1.4-1.4L8 13.2z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 1px;
}
.price-card .checkout-error {
  color: var(--orange-deep);
  font-size: 13px;
  margin-top: 12px;
  min-height: 18px;
  text-align: center;
}

/* ─── Modal ───────────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(45, 27, 0, 0.55);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 100%;
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal h3 { font-size: 28px; margin-bottom: 8px; }
.modal p { font-size: 15px; margin-bottom: 24px; }
.modal label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brown-mute);
  margin-bottom: 8px;
}
.modal input[type="email"] {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 16px;
  font-family: inherit;
  background: var(--white);
  color: var(--brown);
  transition: border-color 0.2s;
}
.modal input[type="email"]:focus { outline: none; border-color: var(--orange); }
.modal .btn { margin-top: 20px; width: 100%; }
.modal .err { color: var(--orange-deep); font-size: 13px; margin-top: 10px; min-height: 18px; }
.modal .close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 22px;
  color: var(--brown-mute);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .close:hover { background: var(--cream-2); color: var(--brown); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ─── FAQ ─────────────────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-q {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--brown);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q::after {
  content: '';
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--orange-soft) url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='%23FF6B35' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 4h2v5h5v2h-5v5H9v-5H4V9h5z'/%3E%3C/svg%3E") center / 14px no-repeat;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 240px; padding-top: 14px; }
.faq-a p { font-size: 16px; }

/* ─── Download page ───────────────────────────────────────────── */
.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 60px auto 0;
}
@media (max-width: 820px) { .download-grid { grid-template-columns: 1fr; max-width: 460px; } }
.dl-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.dl-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
}
.dl-card.disabled { background: transparent; border-style: dashed; opacity: 0.6; }
.dl-card.disabled:hover { transform: none; box-shadow: none; border-color: var(--border); }
.dl-card .os {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
}
.dl-card h3 { margin-bottom: 6px; font-size: 24px; }
.dl-card .meta { font-size: 14px; color: var(--brown-mute); margin-bottom: 28px; }
.coming-soon {
  display: inline-block;
  background: var(--cream-2);
  color: var(--brown-mute);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.install-steps {
  max-width: 720px;
  margin: 80px auto 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.install-steps h3 { margin-bottom: 24px; text-align: center; }
.install-steps ol { counter-reset: step; list-style: none; }
.install-steps li {
  counter-increment: step;
  position: relative;
  padding-left: 56px;
  margin-bottom: 24px;
  font-size: 16px;
  color: var(--brown-soft);
}
.install-steps li:last-child { margin-bottom: 0; }
.install-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -4px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange-deep);
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.install-steps li strong { color: var(--brown); }

/* ─── Welcome page ────────────────────────────────────────────── */
.welcome-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.welcome-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--orange-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.welcome-icon svg { width: 44px; height: 44px; }
@keyframes popIn { from { transform: scale(0); } to { transform: scale(1); } }
.welcome-card h1 { font-size: clamp(36px, 5vw, 52px); margin-bottom: 16px; }
.welcome-card p { font-size: 18px; margin-bottom: 12px; }
.welcome-steps {
  text-align: left;
  margin: 40px 0 32px;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.welcome-steps h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-mute);
  margin-bottom: 16px;
}
.welcome-steps ol { list-style: none; counter-reset: w; }
.welcome-steps li {
  counter-increment: w;
  padding: 8px 0 8px 36px;
  position: relative;
  font-size: 15.5px;
  color: var(--brown-soft);
}
.welcome-steps li::before {
  content: counter(w);
  position: absolute;
  left: 0;
  top: 7px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
}
.welcome-card .btn { margin-top: 8px; }

/* ─── Scroll reveal ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }

/* ─── Legal pages (privacy, terms) ────────────────────────────── */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 60px;
}
.legal-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 12px;
}
.legal-content h3 {
  font-size: 17px;
  margin-top: 28px;
  margin-bottom: 8px;
}
.legal-content p,
.legal-content li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--brown-mute);
}
.legal-content ul {
  padding-left: 24px;
  margin: 12px 0;
}
.legal-content a { color: var(--orange); }
.checkout-consent {
  text-align: center;
  font-size: 12px;
  color: var(--brown-mute);
  margin-top: 16px;
}
.checkout-consent a { color: var(--orange); }

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; }
  .use-grid { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
  .hero { padding: 130px 0 70px; }
  .cta-box { padding: 56px 28px; }
  .install-steps { padding: 32px 24px; }
  .welcome-card { padding: 44px 28px; }
}
