/* ============================================================
   SPVOX — shared site chrome (tokens, header, footer, buttons,
   logo). Mirrors index.html so blog pages match the site exactly.
   ============================================================ */
:root {
  --pink: #B83CC4; --pink-700: #97309F;
  --zapote: #E89A3C; --zapote-50: #FBF1E1;
  --limon: #9BD93F; --limon-600: #84C42D;
  --green: #15B27C; --green-600: #0E8C61; --green-hl: #7FE2B6;
  --blue: #1FA3B0;
  --charcoal: #1A1A1A; --charcoal-soft: #2A2A2A;
  --ink-60: #4F4F4F; --ink-40: #8A8A8A;
  --white: #FFFFFF; --canvas: #F6F5F2; --line: #ECEAE5;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --font-script: "Caveat", "Segoe Script", cursive;
  --r-sm: 10px; --r-md: 16px; --r-lg: 24px; --r-xl: 32px; --r-pill: 999px;
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;
  --shadow-sm: 0 1px 2px rgba(26,26,26,.06), 0 2px 6px rgba(26,26,26,.05);
  --shadow-md: 0 8px 24px rgba(26,26,26,.08), 0 2px 6px rgba(26,26,26,.05);
  --shadow-lg: 0 24px 60px rgba(26,26,26,.14), 0 6px 18px rgba(26,26,26,.08);
  --maxw: 1200px; --gutter: clamp(20px, 5vw, 56px); --header-h: 168px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body); color: var(--charcoal); background: var(--white);
  line-height: 1.6; font-size: 17px; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -.02em; color: var(--charcoal); }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.eyebrow { font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--pink); display: inline-flex; align-items: center; gap: 8px; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--pink); border-radius: 2px; }
.lead { font-size: clamp(17px, 1.4vw, 19px); color: var(--ink-60); max-width: 52ch; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 16px; padding: 14px 26px; border-radius: var(--r-pill); transition: background .25s var(--ease), color .25s var(--ease), transform .15s var(--ease), box-shadow .25s var(--ease); white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn-lime { background: var(--limon); color: var(--charcoal); }
.btn-lime:hover { background: var(--charcoal); color: var(--limon); }
.btn-pink { background: var(--pink); color: var(--white); box-shadow: 0 8px 22px rgba(184,60,196,.28); }
.btn-pink:hover { background: var(--charcoal); color: var(--white); box-shadow: 0 8px 22px rgba(26,26,26,.25); }
.btn-dark { background: var(--charcoal); color: var(--white); }
.btn-dark:hover { background: var(--pink); color: var(--white); }
.btn-ghost { background: transparent; color: var(--charcoal); border: 1.5px solid var(--charcoal); }
.btn-ghost:hover { background: var(--charcoal); color: var(--white); }
.btn-lg { padding: 17px 32px; font-size: 17px; }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* end-of-page CTA band */
.end-cta-wrap { margin-block: clamp(56px, 8vw, 104px); }
.end-cta { background: var(--charcoal); color: #fff; border-radius: var(--r-xl); padding: clamp(34px, 5vw, 64px); text-align: center; position: relative; overflow: hidden; }
.end-cta .kicker { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .13em; text-transform: uppercase; color: var(--limon); }
.end-cta h2 { color: #fff; font-size: clamp(27px, 3.4vw, 42px); line-height: 1.06; margin-top: 14px; letter-spacing: -.02em; }
.end-cta p { color: rgba(255,255,255,.72); margin: 16px auto 0; max-width: 50ch; line-height: 1.62; font-size: clamp(15.5px, 1.5vw, 17px); }
.end-cta .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: var(--s-6); }
.end-cta .btn-lime:hover { background: #fff; color: var(--charcoal); }
.end-cta .btn-outline { border: 1.5px solid rgba(255,255,255,.32); color: #fff; }
.end-cta .btn-outline:hover { background: rgba(255,255,255,.1); }

/* header */
.site-header { position: sticky; top: 0; z-index: 60; height: var(--header-h); display: flex; align-items: center; background: rgba(255,255,255,.72); backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid transparent; transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease); }
.site-header.scrolled { background: rgba(255,255,255,.92); border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.site-header .wrap { max-width: 1300px; }
.header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav a { font-family: var(--font-display); font-weight: 500; font-size: 14.5px; padding: 8px 10px; border-radius: var(--r-pill); color: var(--ink-60); white-space: nowrap; transition: color .2s var(--ease), background .2s var(--ease); }
.nav a:hover, .nav a.active { color: var(--pink); background: rgba(184,60,196,.07); }
/* nav dropdown (umbrella menu) */
.nav .dropdown { position: relative; }
.nav .dropdown::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 10px; }
.nav .dd-toggle { display: inline-flex; align-items: center; gap: 4px; font-family: var(--font-display); font-weight: 500; font-size: 14.5px; padding: 8px 10px; border-radius: var(--r-pill); color: var(--ink-60); white-space: nowrap; transition: color .2s var(--ease), background .2s var(--ease); }
.nav .dropdown:hover .dd-toggle, .nav .dropdown:focus-within .dd-toggle, .nav .dd-toggle.active { color: var(--pink); background: rgba(184,60,196,.07); }
.nav .dd-toggle .dd-chev { width: 13px; height: 13px; flex: none; transition: transform .25s var(--ease); }
.nav .dropdown:hover .dd-toggle .dd-chev, .nav .dropdown:focus-within .dd-toggle .dd-chev { transform: rotate(180deg); }
.nav .dd-menu { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px); min-width: 256px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-lg); padding: 8px; display: flex; flex-direction: column; gap: 2px; opacity: 0; visibility: hidden; transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s; z-index: 70; }
.nav .dropdown:hover .dd-menu, .nav .dropdown:focus-within .dd-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav .dd-menu a { display: block; padding: 10px 13px; border-radius: 10px; font-family: var(--font-body); font-weight: 600; font-size: 14.5px; color: var(--charcoal); white-space: nowrap; background: transparent; }
.nav .dd-menu a small { display: block; font-weight: 500; font-size: 12px; color: var(--ink-40); margin-top: 2px; }
.nav .dd-menu a:hover { background: var(--canvas); }
.nav .dd-menu a:hover small { color: var(--ink-60); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .signin { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 500; font-size: 15.5px; color: var(--charcoal); padding: 9px 6px; white-space: nowrap; }
@media (max-width: 1300px) { .header-cta .signin { display: none; } }
.header-cta .signin:hover { color: var(--pink); }
.header-cta .signin svg { width: 16px; height: 16px; flex: none; }

.burger { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; }
.burger span { display: block; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; position: relative; transition: transform .3s var(--ease), opacity .2s var(--ease); }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: transform .3s var(--ease); }
.burger span::before { top: -7px; } .burger span::after { top: 7px; }
body.menu-open .burger span { background: transparent; }
body.menu-open .burger span::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .burger span::after { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: var(--header-h) 0 0 0; z-index: 55; background: var(--charcoal); color: var(--white); display: flex; flex-direction: column; padding: var(--s-7) var(--gutter); gap: var(--s-3); overflow-y: auto; -webkit-overflow-scrolling: touch; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease); }
body.menu-open .mobile-menu { opacity: 1; transform: none; pointer-events: auto; }
.mobile-menu a { font-family: var(--font-display); font-weight: 600; font-size: 26px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); color: var(--white); }
.mobile-menu a:hover { color: var(--green); }
.mobile-menu .btn { margin-top: var(--s-4); }
/* mobile collapsible dropdown (mirrors the desktop Resources umbrella) */
.mobile-menu .m-dropdown { border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-menu .m-dd-toggle { display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%; font-family: var(--font-display); font-weight: 600; font-size: 26px; padding: 12px 0; color: var(--white); text-align: left; }
.mobile-menu .m-dd-toggle:hover { color: var(--green); }
.mobile-menu .m-dd-toggle .dd-chev { width: 22px; height: 22px; flex: none; transition: transform .3s var(--ease); }
.mobile-menu .m-dd-toggle[aria-expanded="true"] .dd-chev { transform: rotate(180deg); }
.mobile-menu .m-dd-menu { display: flex; flex-direction: column; overflow: hidden; max-height: 0; transition: max-height .35s var(--ease); }
.mobile-menu .m-dropdown.open .m-dd-menu { max-height: 360px; }
.mobile-menu .m-dd-menu a { font-size: 19px; font-weight: 500; padding: 11px 0 11px 18px; border-bottom: 1px solid rgba(255,255,255,.07); color: rgba(255,255,255,.78); }
.mobile-menu .m-dd-menu a:last-child { border-bottom: 0; padding-bottom: 16px; }
.mobile-menu .m-dd-menu a:hover { color: var(--green); }

/* boxed wordmark logo */
.logo-box { display: inline-flex; flex-direction: column; align-items: center; gap: .42em; font-size: 26px; line-height: 1; text-align: center; }
.logo-box .frame { border: .115em solid var(--charcoal); border-radius: .46em; padding: .2em .34em .28em; font-family: "Helvetica Neue", Arial, sans-serif; font-weight: 700; line-height: .96; color: var(--charcoal); font-size: 1em; letter-spacing: -.005em; text-align: left; }
.logo-box .frame span { display: block; }
.logo-box .tag { font-family: "Helvetica Neue", Arial, sans-serif; font-weight: 700; font-size: .375em; letter-spacing: .07em; white-space: nowrap; text-transform: uppercase; color: var(--charcoal); line-height: 1.28; text-align: center; }
.site-footer .logo-box .frame, .site-footer .logo-box .frame span { color: var(--white); border-color: var(--white); }
.site-footer .logo-box .tag { color: rgba(255,255,255,.75); }
.mobile-menu .logo-box .frame, .mobile-menu .logo-box .frame span { color: var(--white); border-color: var(--white); }
.mobile-menu .logo-box .tag { color: rgba(255,255,255,.75); }
.site-header .logo-box { font-size: 24px; align-items: flex-start; text-align: left; }
.site-header .logo-box .tag { text-align: left; }
/* sweeping palette gradient — letters stay painted, box ring sweeps in sync */
.site-header .logo-box .frame { position: relative; border-color: transparent; background-image: linear-gradient(100deg, var(--pink), var(--zapote), var(--limon), var(--green), var(--blue), var(--pink)); background-size: 200% 100%; background-repeat: repeat-x; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; animation: logoSweep 6s linear infinite; }
.site-header .logo-box .frame span { color: inherit; -webkit-text-fill-color: inherit; }
.site-header .logo-box .frame::before { content: ""; position: absolute; inset: -.115em; border-radius: .46em; padding: .115em; pointer-events: none; background-image: linear-gradient(100deg, var(--pink), var(--zapote), var(--limon), var(--green), var(--blue), var(--pink)); background-size: 200% 100%; background-repeat: repeat-x; -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; animation: logoSweep 6s linear infinite; }
@keyframes logoSweep { from { background-position: 0 0; } to { background-position: 200% 0; } }
@media (prefers-reduced-motion: reduce) { .site-header .logo-box .frame, .site-header .logo-box .frame::before { animation: none; } }
.site-header .logo-box { font-size: 24px; }
.site-footer .logo-box { font-size: 24px; align-items: flex-start; }
.site-footer .logo-box .tag { text-align: left; }

/* footer */
.site-footer { background: var(--charcoal); color: rgba(255,255,255,.62); padding-block: var(--s-9) var(--s-6); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: var(--s-6); }
.footer-brand .logo-box { margin-bottom: var(--s-5); }
.footer-brand p { font-size: 15px; max-width: 30ch; }
.footer-brand .socials { display: flex; gap: 10px; margin-top: var(--s-5); }
.footer-brand .socials a { width: 40px; height: 40px; border-radius: 12px; border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: rgba(255,255,255,.7); transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease); }
.footer-brand .socials a:hover { color: var(--white); background: var(--pink); border-color: var(--pink); }
.footer-brand .socials svg { width: 18px; height: 18px; }
.footer-col h5 { font-family: var(--font-display); color: var(--white); font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: var(--s-4); }
.footer-col a { display: block; padding: 7px 0; font-size: 15px; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--pink); }
.footer-col .footer-email { display: block; padding: 7px 0; font-size: 15px; color: rgba(255,255,255,.62); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-8); padding-top: var(--s-5); border-top: 1px solid rgba(255,255,255,.1); font-size: 14px; }
.footer-bottom .legal { display: flex; gap: var(--s-5); flex-wrap: wrap; align-items: center; }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom .do-not-sell { display: inline-flex; align-items: center; gap: 7px; }
.footer-bottom .do-not-sell .dns-ic { display: inline-flex; }
.footer-bottom .do-not-sell .dns-ic svg { width: 26px; height: 13px; display: block; }

/* footer trust statement + partner credentials */
.footer-brand .footer-trust { font-family: var(--font-display); font-weight: 600; font-size: 16.5px; line-height: 1.5; color: rgba(255,255,255,.92); max-width: 34ch; }
.footer-creds { display: flex; flex-wrap: wrap; gap: var(--s-6) var(--s-7); margin-top: var(--s-6); }
.cred { display: flex; flex-direction: column; gap: 12px; }
.cred .cred-label { font-family: var(--font-display); font-weight: 700; font-size: 12.5px; letter-spacing: .04em; color: rgba(255,255,255,.66); }
.cred .cred-label .handle-name { font-size: 14.5px; font-weight: 800; color: rgba(255,255,255,.82); }
/* Source-Connect studio badge — white mark on dark bg */
.cred-logo.sc { display: inline-flex; align-items: center; gap: 14px; padding: 12px 18px; border-radius: 12px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.05); width: fit-content; }
.cred-logo.sc .sc-img { height: 50px; width: auto; display: block; flex: none; }
.cred-logo.sc .sc-txt { font-family: var(--font-display); font-weight: 700; font-size: 10.5px; letter-spacing: .06em; line-height: 1.3; text-transform: uppercase; color: rgba(255,255,255,.82); border-left: 1px solid rgba(255,255,255,.18); padding-left: 14px; }
/* STARS The Agency credit — monochrome on dark bg */
.cred-logo.stars { display: inline-flex; align-items: center; gap: 12px; }
.cred-logo.stars .stars-tri { width: 0; height: 0; border-left: 17px solid transparent; border-right: 17px solid transparent; border-bottom: 30px solid rgba(255,255,255,.9); flex: none; }
.cred-logo.stars .stars-word { font-family: var(--font-display); font-weight: 700; font-size: 30px; letter-spacing: .04em; color: rgba(255,255,255,.78); line-height: 1; }
.cred-logo.stars .stars-word sup { font-size: .32em; vertical-align: super; font-weight: 600; }
.cred-logo.stars .stars-sub { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.05; align-self: flex-end; padding-bottom: 3px; }

@media (max-width: 980px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: var(--s-7) var(--s-5); } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 1160px) { .nav, .header-cta .signin, .header-cta .btn { display: none; } .burger { display: inline-flex; } }
@media (max-width: 560px) { :root { --header-h: 128px; } .footer-grid { grid-template-columns: 1fr 1fr; } .site-header .logo-box { font-size: 18px; } }
