/* Careboundless marketing site — shared design system.
   Warm, hopeful, grounded. Teal brand + sand/coral accents + the ∞ motif.
   No framework: fast, indexable, portable (host anywhere static). */

:root {
  --teal: #1a6a65;
  --teal-deep: #11514c;
  --teal-bright: #2f9e8f;
  --pale-teal: #cfe7e0;
  --sand: #e9b14e;
  --sand-soft: #f6dca0;
  --coral: #ef9b8e;
  --cream: #fbf6ee;
  --ink: #1f2a2a;
  --ink-soft: #4d5a59;
  --ink-faint: #7b8786;
  --line: #e7e2d8;
  --white: #ffffff;

  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-soft: 0 1px 2px rgba(17, 81, 76, 0.04), 0 6px 20px rgba(17, 81, 76, 0.06);
  --shadow-lift: 0 10px 40px rgba(17, 81, 76, 0.12);
  --maxw: 1120px;

  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; color: var(--ink); letter-spacing: -0.01em; margin: 0 0 0.5em; }
h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { margin: 0 0 1.1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--cream { background: var(--cream); }
.section--pale { background: linear-gradient(180deg, var(--cream), #f3efe6); }
.section--teal { background: var(--teal); color: #eaf6f3; }
.section--teal h2, .section--teal h3 { color: #fff; }
.section--tight { padding: 56px 0; }
.center { text-align: center; }
.measure { max-width: 720px; margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal); background: var(--pale-teal);
  padding: 7px 14px; border-radius: var(--radius-pill);
}
.eyebrow--light { color: #d8f0ea; background: rgba(255,255,255,0.14); }

.lede { font-size: 1.2rem; color: var(--ink-soft); }
.section--teal .lede { color: #cfe7e0; }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: var(--radius-pill); border: 1.5px solid transparent;
  cursor: pointer; transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease; text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--teal); color: #fff; box-shadow: var(--shadow-soft); }
.btn--primary:hover { background: var(--teal-deep); color: #fff; }
.btn--ghost { background: transparent; color: var(--teal); border-color: rgba(26,106,101,0.3); }
.btn--ghost:hover { border-color: var(--teal); }
.btn--white { background: #fff; color: var(--teal); }
.btn--white:hover { background: var(--cream); color: var(--teal-deep); }
.btn--lg { padding: 17px 32px; font-size: 1.06rem; }
.btn--block { width: 100%; }

/* header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.82); backdrop-filter: saturate(150%) blur(12px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand__mark { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 9px; background: var(--teal); color: #fff; font-size: 1.05rem; font-weight: 700; }
.brand__name { font-family: var(--font-head); font-size: 1.28rem; letter-spacing: -0.01em; }
.brand--light .brand__name, .brand--light { color: #fff; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { color: var(--ink-soft); font-size: 0.98rem; font-weight: 500; }
.nav-links a:hover { color: var(--teal); text-decoration: none; }
.nav-links a.btn { color: #fff; }
.nav-links a.btn--primary:hover { color: #fff; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; color: var(--ink); cursor: pointer; }

/* hero */
.hero { padding: 72px 0 64px; background: radial-gradient(1100px 520px at 78% -8%, #e8f4f0 0%, rgba(232,244,240,0) 60%), var(--white); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 54px; align-items: center; }
.hero h1 { margin-top: 16px; }
.hero .lede { max-width: 540px; }
.hero-art { position: relative; }

/* join / waitlist form */
.join-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-soft); }
.join-form { display: flex; gap: 10px; flex-wrap: wrap; }
.join-form input[type=email] {
  flex: 1 1 220px; min-width: 0; padding: 15px 18px; font-size: 1rem; font-family: var(--font-body);
  border: 1.5px solid var(--line); border-radius: var(--radius-pill); color: var(--ink); background: #fff;
}
.join-form input[type=email]:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(26,106,101,0.12); }
.join-note { font-size: 0.86rem; color: var(--ink-faint); margin: 12px 0 0; }
.join-success { display: none; padding: 16px 18px; border-radius: var(--radius); background: var(--pale-teal); color: var(--teal-deep); font-weight: 600; }
.join-success.show { display: block; }

/* contact / custom-packages lead form */
.lead-form { display: grid; gap: 16px; text-align: left; }
.lead-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-field { display: grid; gap: 6px; }
.lead-field label { font-size: 0.86rem; font-weight: 600; color: var(--ink-soft); }
.lead-field input, .lead-field select, .lead-field textarea { width: 100%; padding: 13px 15px; font-size: 1rem; font-family: var(--font-body); border: 1.5px solid var(--line); border-radius: var(--radius); color: var(--ink); background: #fff; }
.lead-field textarea { min-height: 140px; resize: vertical; }
.lead-field input:focus, .lead-field select:focus, .lead-field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(26,106,101,0.12); }
@media (max-width: 640px) { .lead-form .row2 { grid-template-columns: 1fr; } }

/* breadcrumbs + related reading (internal-linking + SEO) */
.crumbs { font-size: 0.86rem; color: var(--ink-faint); margin-bottom: 18px; }
.crumbs a { color: var(--teal); }
.crumbs a:hover { text-decoration: underline; }
.related { margin: 42px 0 8px; padding: 24px 26px; background: var(--cream); border-radius: var(--radius-lg); border: 1px solid var(--line); }
.related h3 { font-size: 1.15rem; margin-bottom: 10px; }
.related ul { margin: 0; padding-left: 1.1em; }
.related li { margin: 7px 0; }
.related a { font-weight: 500; text-decoration: none; }
.related a:hover { text-decoration: underline; }

/* real photography */
.photo-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.photo-split--rev .photo-wrap { order: -1; }
.photo-wrap img { width: 100%; height: 100%; max-height: 480px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); display: block; }
.photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.photo-strip img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-soft); display: block; }
.photo-hero { border-radius: var(--radius-lg); object-fit: cover; width: 100%; max-height: 540px; box-shadow: var(--shadow-lift); display: block; }
@media (max-width: 920px) {
  .photo-split { grid-template-columns: 1fr; gap: 28px; }
  .photo-split--rev .photo-wrap { order: 0; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
}

/* trust row */
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 18px; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; font-size: 0.9rem; color: var(--ink-soft); }
.trust-row .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal-bright); }

/* cards / features */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-soft); }
.feature__icon { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 16px; background: var(--pale-teal); color: var(--teal-deep); }
.feature h3 { font-size: 1.28rem; margin-bottom: 8px; }
.feature p { font-size: 1rem; color: var(--ink-soft); margin: 0; }
.feature__icon--sand { background: var(--sand-soft); color: #8a5a12; }
.feature__icon--coral { background: #fbd9d1; color: #a23f30; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 28px; background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.step__num { width: 38px; height: 38px; border-radius: 50%; background: var(--teal); color: #fff; font-family: var(--font-head); font-weight: 600; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.step h3 { font-size: 1.2rem; }
.step p { font-size: 1rem; color: var(--ink-soft); margin: 0; }

/* mission band */
.mission { text-align: center; }
.mission .infinity { font-family: var(--font-head); font-size: 3.4rem; color: var(--sand); line-height: 1; margin-bottom: 8px; }
.mission p.big { font-family: var(--font-head); font-size: clamp(1.5rem, 2.8vw, 2.1rem); line-height: 1.32; color: #fff; max-width: 880px; margin: 0 auto 1rem; font-weight: 500; }

/* audience cards */
.audience { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.audience .emoji { font-size: 1.7rem; }
.audience h3 { font-size: 1.15rem; margin-bottom: 4px; }
.audience p { font-size: 0.98rem; color: var(--ink-soft); margin: 0; }

/* pricing teaser */
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; }
.price-card--featured { border: 2px solid var(--teal); box-shadow: var(--shadow-lift); position: relative; }
.price-tag { font-family: var(--font-head); font-size: 2.4rem; font-weight: 600; }
.price-tag small { font-family: var(--font-body); font-size: 0.95rem; color: var(--ink-faint); font-weight: 500; }
.price-card ul { list-style: none; padding: 0; margin: 16px 0 22px; }
.price-card li { position: relative; padding: 6px 0 6px 26px; font-size: 0.98rem; color: var(--ink-soft); }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--teal-bright); font-weight: 700; }
.price-card li.locked { color: var(--ink-faint); }
.price-card li.locked::before { content: "🔒"; font-size: 0.8rem; }
.badge-pop { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--pale-teal); color: var(--teal-deep); font-size: 0.78rem; font-weight: 700; padding: 4px 14px; border-radius: var(--radius-pill); white-space: nowrap; }

/* faq */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { cursor: pointer; padding: 22px 0; font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; list-style: none; display: flex; justify-content: space-between; gap: 16px; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--teal); font-size: 1.5rem; line-height: 1; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 0 22px; color: var(--ink-soft); margin: 0; }

/* founder note */
.note-card { background: var(--cream); border: 1px solid var(--line); border-left: 4px solid var(--teal); border-radius: var(--radius-lg); padding: 34px; }
.note-card p { font-family: var(--font-head); font-size: 1.25rem; line-height: 1.5; color: var(--ink); font-weight: 500; }
.note-sign { font-family: var(--font-body); font-size: 0.98rem; color: var(--ink-soft); font-weight: 600; }

/* blog */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform 0.14s ease, box-shadow 0.2s ease; }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); text-decoration: none; }
.post-card__band { height: 8px; }
.post-card__photo { width: 100%; height: 172px; object-fit: cover; display: block; }
.post-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.tag { display: inline-block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--teal); background: var(--pale-teal); padding: 4px 11px; border-radius: var(--radius-pill); align-self: flex-start; }
.post-card h3 { font-size: 1.3rem; margin: 14px 0 8px; }
.post-card p { font-size: 0.98rem; color: var(--ink-soft); margin: 0 0 16px; flex: 1; }
.post-card .read { font-weight: 600; color: var(--teal); font-size: 0.95rem; }
.post-meta { font-size: 0.86rem; color: var(--ink-faint); }

/* article */
.article { max-width: 760px; margin: 0 auto; padding: 56px 24px 24px; }
.article-header { margin-bottom: 36px; }
.article-header h1 { font-size: clamp(2rem, 4.4vw, 3rem); margin-bottom: 16px; }
.article-meta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; color: var(--ink-faint); font-size: 0.92rem; }
.prose { font-size: 1.12rem; line-height: 1.75; color: #28332f; }
.prose h2 { font-size: clamp(1.5rem, 2.6vw, 1.95rem); margin: 2em 0 0.6em; }
.prose h3 { font-size: 1.3rem; margin: 1.6em 0 0.5em; }
.prose p { margin: 0 0 1.25rem; }
.prose ul, .prose ol { margin: 0 0 1.4rem; padding-left: 1.3em; }
.prose li { margin: 0.4em 0; }
.prose blockquote { margin: 1.6rem 0; padding: 4px 0 4px 22px; border-left: 4px solid var(--sand); font-family: var(--font-head); font-size: 1.3rem; line-height: 1.45; color: var(--ink); }
.prose a { text-decoration: underline; text-underline-offset: 2px; }
.callout { background: var(--pale-teal); border-radius: var(--radius); padding: 22px 24px; margin: 1.8rem 0; }
.callout p { margin: 0; font-size: 1.02rem; color: var(--teal-deep); }
.callout strong { color: var(--teal-deep); }
.article-cta { margin: 48px 0 12px; padding: 32px; background: var(--cream); border-radius: var(--radius-lg); text-align: center; border: 1px solid var(--line); }
.disclaimer { font-size: 0.9rem; color: var(--ink-faint); border-top: 1px solid var(--line); margin-top: 40px; padding-top: 20px; }

/* footer */
.site-footer { background: var(--teal-deep); color: #c8e3dd; padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 14px; }
.site-footer a { color: #bcddd6; display: block; padding: 4px 0; font-size: 0.96rem; }
.site-footer a:hover { color: #fff; }
.footer-tag { font-family: var(--font-head); color: var(--sand-soft); margin-top: 10px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); margin-top: 40px; padding-top: 22px; font-size: 0.86rem; color: #9cc4bc; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* warm "moments" band — human illustrations of care */
.moments-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 22px; }
.moment { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.moment__art { display: block; width: 100%; height: auto; }
.moment__cap { padding: 16px 20px 20px; }
.moment__cap h3 { font-size: 1.12rem; margin: 0 0 4px; }
.moment__cap p { font-size: 0.96rem; color: var(--ink-soft); margin: 0; }
.scene-band { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 48px; align-items: center; }
.scene-band .scene-art { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); }

/* quote / testimonial */
.quote-band { text-align: center; max-width: 820px; margin: 0 auto; }
.quote-band .qmark { font-family: var(--font-head); font-size: 3.2rem; color: var(--sand); line-height: 0.6; }
.quote-band blockquote { font-family: var(--font-head); font-weight: 500; font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.4; color: var(--ink); margin: 10px 0 18px; }
.section--teal .quote-band blockquote { color: #fff; }
.quote-band cite { font-style: normal; font-size: 0.98rem; color: var(--ink-soft); font-weight: 600; }
.section--teal .quote-band cite { color: #cfe7e0; }

/* feature deep-dive rows with phone mockups */
.deep { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; margin-top: 56px; }
.deep:nth-child(even) .deep__media { order: -1; }
.deep__eyebrow { color: var(--teal); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.78rem; }
.deep h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 10px 0 14px; }
.deep p.lede { font-size: 1.1rem; margin-bottom: 16px; }
.deep ul.checks { list-style: none; padding: 0; margin: 0; }
.deep ul.checks li { position: relative; padding: 7px 0 7px 30px; color: var(--ink-soft); font-size: 1.02rem; }
.deep ul.checks li::before { content: "✓"; position: absolute; left: 0; top: 7px; width: 20px; height: 20px; border-radius: 50%; background: var(--pale-teal); color: var(--teal-deep); font-size: 0.74rem; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.deep__media { display: flex; justify-content: center; }

/* phone mockup */
.phone { width: 270px; max-width: 80vw; background: #0e3b38; border-radius: 38px; padding: 11px; box-shadow: var(--shadow-lift); flex: none; }
.phone__screen { background: var(--cream); border-radius: 28px; overflow: hidden; position: relative; }
.phone__notch { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 92px; height: 20px; background: #0e3b38; border-radius: 999px; z-index: 2; }
.scr { padding: 30px 16px 18px; }
.scr__bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.scr__bar b { font-family: var(--font-head); font-size: 1.18rem; color: var(--ink); }
.scr__chip { font-size: 0.62rem; font-weight: 700; color: var(--teal-deep); background: var(--pale-teal); padding: 3px 9px; border-radius: 999px; }
.scr__card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px 13px; margin-bottom: 10px; display: flex; gap: 10px; align-items: center; }
.scr__ico { width: 34px; height: 34px; border-radius: 10px; background: var(--pale-teal); display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex: none; }
.scr__ico--sand { background: var(--sand-soft); } .scr__ico--coral { background: #fbd9d1; }
.scr__t { font-size: 0.82rem; font-weight: 600; color: var(--ink); line-height: 1.25; }
.scr__s { font-size: 0.7rem; color: var(--ink-faint); }
.scr__check { margin-left: auto; width: 20px; height: 20px; border-radius: 50%; background: var(--teal-bright); color: #fff; font-size: 0.7rem; display: flex; align-items: center; justify-content: center; flex: none; }
.scr__check--open { background: #fff; border: 2px solid var(--line); }
.scr__photos { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
.scr__photo { aspect-ratio: 1; border-radius: 9px; }
.scr__pill { display: inline-block; font-size: 0.66rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; background: var(--sand-soft); color: #8a5a12; }

/* real app screenshots inside the phone frame (agency-grade product shots) */
.phone__screen img { display: block; width: 100%; height: auto; }
.phone--shot .phone__screen { background: #f2f4f5; }
.phone--lg { width: 300px; }

/* hero product shot with floating callout cards */
.hero-shot { position: relative; display: flex; justify-content: center; align-items: center; padding: 14px 0; }
.hero-shot .phone { width: 290px; box-shadow: 0 32px 70px rgba(17,81,76,0.24); }
.hero-shot::before { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(47,158,143,0.18), rgba(47,158,143,0) 70%); z-index: 0; }
.hero-float { position: absolute; z-index: 3; background: #fff; border-radius: 14px; box-shadow: 0 12px 30px rgba(17,81,76,0.18); padding: 10px 13px; display: flex; align-items: center; gap: 9px; font-size: 0.84rem; font-weight: 600; color: var(--ink); }
.hero-float .hf-ico { width: 28px; height: 28px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex: none; }
.hf--teal { background: var(--pale-teal); color: var(--teal-deep); }
.hf--sand { background: var(--sand-soft); color: #8a5a12; }
.hero-float--a { top: 30px; left: 4px; }
.hero-float--b { bottom: 44px; right: 2px; }
.hero-float small { display: block; font-weight: 500; font-size: 0.72rem; color: var(--ink-faint); }

/* phone showcase strip */
.showcase { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; align-items: flex-start; margin-top: 40px; }
.showcase figure { margin: 0; text-align: center; width: 232px; }
.showcase .phone { width: 232px; }
.showcase figcaption { margin-top: 16px; }
.showcase figcaption b { display: block; font-family: var(--font-head); font-size: 1.12rem; color: var(--ink); }
.showcase figcaption span { font-size: 0.92rem; color: var(--ink-soft); }

/* warm illustration set */
.illus { width: 100%; height: auto; display: block; border-radius: var(--radius-lg); }
.aud-split { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 48px; align-items: center; }
.aud-list { display: grid; gap: 14px; margin-top: 22px; }
.aud-list .audience { padding: 18px; }
.illus-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.illus-split--rev .illus-wrap { order: -1; }
@media (max-width: 920px) {
  .aud-split, .illus-split { grid-template-columns: 1fr; gap: 30px; }
  .illus-split--rev .illus-wrap { order: 0; }
}

@media (max-width: 640px) {
  .hero-float--a { left: 0; } .hero-float--b { right: 0; }
}

/* lead magnets / free resources */
.lead-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.lead-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform 0.14s ease, box-shadow 0.2s ease; }
.lead-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); text-decoration: none; }
.lead-card__art { height: 116px; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; }
.lead-card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.lead-card__kind { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-faint); }
.lead-card h3 { font-size: 1.12rem; margin: 5px 0 7px; }
.lead-card p { font-size: 0.92rem; color: var(--ink-soft); margin: 0 0 16px; flex: 1; }
.lead-card .get { font-weight: 700; color: var(--teal); font-size: 0.92rem; }
.lead-note { font-size: 0.86rem; color: var(--ink-faint); }

/* utilities */
.mt-s { margin-top: 14px; } .mt-m { margin-top: 26px; } .mt-l { margin-top: 40px; }
.stack-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hide-desktop { display: none; }

/* responsive */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .grid--3, .grid--4, .steps, .price-cards, .post-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .deep { grid-template-columns: 1fr; gap: 28px; }
  .deep:nth-child(even) .deep__media { order: 0; }
  .scene-band { grid-template-columns: 1fr; gap: 28px; }
  .moments-grid { grid-template-columns: 1fr; }
  .lead-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 17px; }
  .section { padding: 60px 0; }
  .nav-links { position: fixed; inset: 70px 0 auto 0; background: #fff; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 24px 20px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-soft); transform: translateY(-150%); transition: transform 0.25s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px 0; }
  .nav-links a.btn { margin-top: 8px; text-align: center; }
  .nav-toggle { display: block; }
  .grid--3, .grid--4, .steps, .price-cards, .post-grid, .grid--2, .footer-grid, .lead-grid { grid-template-columns: 1fr; }
}

/* ===== White-label brand showcase ===== */
.brandshow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.brandcard { text-align: center; }
.bapp { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lift); border: 1px solid rgba(0,0,0,0.06); background: #fff; }
.bapp__bar { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: var(--brand); color: #fff; }
.bapp__logo { width: 30px; height: 30px; border-radius: 9px; background: rgba(255,255,255,0.94); color: var(--brand); display: grid; place-items: center; font-weight: 700; font-family: var(--font-head); font-size: 1rem; }
.bapp__name { font-weight: 700; font-size: 0.96rem; letter-spacing: 0.2px; }
.bapp__menu { margin-left: auto; opacity: 0.85; }
.bapp__body { padding: 16px; background: #fff; }
.bapp__hi { font-family: var(--font-head); font-size: 1.04rem; color: var(--ink); margin: 0 0 12px; text-align: left; }
.bapp__tile { display: flex; align-items: center; gap: 11px; padding: 11px 12px; border-radius: 12px; background: color-mix(in srgb, var(--brand) 9%, #fff); margin-bottom: 9px; }
.bapp__dot { width: 13px; height: 13px; border-radius: 50%; background: var(--brand); flex: none; }
.bapp__lines { flex: 1; }
.bapp__lines i { display: block; height: 7px; border-radius: 4px; background: #e7e2da; }
.bapp__lines i:first-child { width: 72%; margin-bottom: 6px; background: #d6d0c6; }
.bapp__lines i:last-child { width: 46%; }
.bapp__nav { display: flex; justify-content: space-around; padding: 13px 8px 4px; border-top: 1px solid #eee; margin-top: 8px; }
.bapp__nav span { width: 22px; height: 22px; border-radius: 7px; background: #ece8e1; }
.bapp__nav span.on { background: var(--brand); }
.brandcard__cap { margin-top: 14px; font-weight: 600; color: var(--ink); }
.brandcard__cap small { display: block; font-weight: 400; color: var(--ink-faint); font-size: 0.84rem; margin-top: 2px; }
@media (max-width: 780px) {
  .brandshow { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
}

/* ===== Desktop browser-frame mockup ===== */
.browser { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lift); border: 1px solid var(--line); background: #fff; max-width: 940px; margin: 0 auto; }
.browser__bar { display: flex; align-items: center; gap: 14px; padding: 11px 16px; background: #efece6; border-bottom: 1px solid var(--line); }
.browser__dots { display: flex; gap: 7px; flex: none; }
.browser__dots i { width: 12px; height: 12px; border-radius: 50%; display: block; }
.browser__dots i:nth-child(1) { background: #f0867d; }
.browser__dots i:nth-child(2) { background: #f3c969; }
.browser__dots i:nth-child(3) { background: #7ec98f; }
.browser__url { flex: 1; max-width: 440px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 6px 16px; font-size: 0.82rem; color: var(--ink-faint); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.browser__img { display: block; width: 100%; height: auto; }
.browser__cap { text-align: center; color: var(--ink-faint); font-size: 0.9rem; margin: 14px 0 0; }
@media (max-width: 600px) {
  .browser__url { font-size: 0.7rem; max-width: 190px; }
}

/* ===== Comparison table (agency hub) ===== */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare { width: 100%; min-width: 640px; border-collapse: collapse; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.compare th, .compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.95rem; vertical-align: middle; }
.compare thead th { background: var(--pale-teal); font-family: var(--font-head); font-size: 1.02rem; color: var(--ink); font-weight: 600; }
.compare tbody th { font-weight: 600; color: var(--ink); font-family: var(--font-body, inherit); }
.compare .col-best { background: color-mix(in srgb, var(--teal) 7%, #fff); }
.compare thead .col-best { background: var(--teal); color: #fff; }
.compare tr:last-child td, .compare tr:last-child th { border-bottom: none; }
.compare .yes { color: #2f7d57; font-weight: 600; }
.compare .no { color: #c2553f; }
.compare .meh { color: var(--ink-faint); }
.compare__note { text-align: center; color: var(--ink-faint); font-size: 0.86rem; margin-top: 12px; }
