/*
Theme Name: Mental Wealth Community CIC
Theme URI: https://mentalwealthcommunitycic.co.uk
Author: Burntwood Business
Author URI: https://burntwood.business
Description: Lean custom theme for Mental Wealth Community CIC. Reproduces the EmDash "Human Capacity" design (seven-heart brand, Baloo 2 / Nunito / Pacifico) as a classic WordPress theme. No page builder.
Version: 1.1.3
License: GPL-2.0-or-later
Text Domain: mwc
*/

/* =====================================================================
   BASE TOKENS + RESET
   (font vars are bound to the Google fonts enqueued in functions.php;
   colour tokens are set in the brand block further down)
   ===================================================================== */
:root {
  --wide-width: 1200px;
  --font-serif: "Baloo 2", system-ui, sans-serif;   /* display / headings */
  --font-sans: "Nunito", system-ui, sans-serif;     /* body / UI */
  --font-script: "Pacifico", cursive;               /* script accent */
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.15; }
main { min-height: calc(100vh - 220px); }

/* =====================================================================
   Mental Wealth Community CIC - brand theme (ported verbatim from EmDash)
   ===================================================================== */
:root {
  --mwc-cyan: #06C4E6;
  --mwc-blue: #0B5AC8;
  --mwc-purple: #9F42D5;
  --mwc-pink: #FC5CAD;
  --mwc-red: #E82834;
  --mwc-orange: #F89C1C;
  --mwc-green: #3DBB1E;
  --mwc-yellow: #FFD24D;
  --mwc-gradient: linear-gradient(90deg,#06C4E6 0%,#0B5AC8 16%,#9F42D5 33%,#FC5CAD 50%,#E82834 66%,#F89C1C 83%,#3DBB1E 100%);
  --mwc-gradient-btn: linear-gradient(90deg,#06C4E6 0%,#0B5AC8 40%,#9F42D5 70%,#FC5CAD 100%);
  --color-bg: #FBFDFE;
  --color-surface: #FFFFFF;
  --color-text: #111231;
  --color-muted: #5C6B7A;
  --color-border: #E2EAF0;
  --color-accent: #06C4E6;
  --color-accent-muted: #0596b1;
  --mwc-tint: #EDF3F7;
  --mwc-ink: #111231;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --font-size-4xl: 3.4rem;
}
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.01em; color: var(--color-text); }

.mwc-script { font-family: var(--font-script), cursive; color: var(--mwc-cyan); font-weight: 400; }
.grad-text { background: var(--mwc-gradient); background-size: 220% auto; -webkit-background-clip: text; background-clip: text; color: transparent; animation: mwc-drift 9s ease-in-out infinite; }
.container { max-width: var(--wide-width); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.muted { color: var(--color-muted); }
.mt { margin-top: 1.4rem; } .mt-lg { margin-top: 2.2rem; } .mt-sm { margin-top: .6rem; }

.eyebrow { display: inline-flex; align-items: center; gap: .65rem; font-family: var(--font-sans); font-weight: 800; text-transform: uppercase; letter-spacing: .14em; font-size: .95rem; color: var(--mwc-blue); margin-bottom: 1rem; }
.eyebrow::before { content: ""; width: 34px; height: 8px; border-radius: 99px; background: var(--mwc-gradient); background-size: 220% auto; animation: mwc-drift 9s ease-in-out infinite; }
.eyebrow.center { justify-content: center; }

.rainbow-bar { height: 8px; border: none; border-radius: 99px; background: var(--mwc-gradient); background-size: 220% auto; width: 100%; animation: mwc-drift 9s ease-in-out infinite; }

.section { padding: 72px 0; }
.section-tint { background: var(--mwc-tint); }
.section-ink { background: var(--mwc-ink); color: #cfd4e8; }
.section-ink h1, .section-ink h2, .section-ink h3 { color: #fff; }
.section-head { max-width: 680px; margin: 0 0 44px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.lead { font-size: 1.18rem; color: var(--color-muted); max-width: 60ch; }
.center .lead { margin-left: auto; margin-right: auto; }

.grid { display: grid; gap: 24px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.page-hero { padding: 64px 0 28px; position: relative; overflow: hidden; }
.page-hero .container { position: relative; z-index: 1; }
.page-title { font-size: clamp(2.4rem, 5.5vw, 3.6rem); line-height: 1.05; }

.alert { display: flex; gap: .85rem; align-items: flex-start; padding: 1rem 1.2rem; border-radius: var(--radius); font-weight: 600; margin-bottom: 1rem; }
.alert .ico { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: .85rem; font-weight: 800; }
.alert a { font-weight: 800; }
.alert-success { background: rgba(61,187,30,.12); color: #256e12; } .alert-success .ico { background: var(--mwc-green); }
.alert-info { background: rgba(6,196,230,.12); color: #06647a; } .alert-info .ico { background: var(--mwc-cyan); }
.alert-warn { background: rgba(248,156,28,.14); color: #9a5a05; } .alert-warn .ico { background: var(--mwc-orange); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-family: var(--font-sans); font-weight: 800; font-size: 1rem; padding: .85rem 1.6rem; border-radius: var(--radius-pill); cursor: pointer; border: 2px solid transparent; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-ink { background: var(--mwc-ink); color: #fff; }
.btn-ink:hover { background: #1c1d44; color: #fff; }
.btn-gradient { background: var(--mwc-gradient-btn); background-size: 220% auto; color: #fff; animation: mwc-drift 30s ease-in-out infinite; }
.btn-gradient:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 38px rgba(17,18,49,.18); }
.btn-cyan { background: var(--mwc-cyan); color: #fff; }
.btn-ghost { background: transparent; color: var(--color-text); border-color: var(--color-border); }
.btn-ghost:hover { border-color: var(--mwc-cyan); }
.btn-sm { padding: .55rem 1.1rem; font-size: .9rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }
.btn-row { display: flex; gap: .8rem; flex-wrap: wrap; }
.btn-row.center { justify-content: center; }

.tag-row { display: flex; gap: .6rem; flex-wrap: wrap; }
.pill { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .9rem; padding: .4rem .95rem; border-radius: var(--radius-pill); }
.pill::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: currentColor; opacity: .9; }
.pill-cyan { background: rgba(6,196,230,.12); color: #0596b1; }
.pill-purple { background: rgba(159,66,213,.12); color: var(--mwc-purple); }
.pill-pink { background: rgba(252,92,173,.14); color: #d83f8d; }
.pill-green { background: rgba(61,187,30,.14); color: #2c9112; }
.pill-orange { background: rgba(248,156,28,.16); color: #c9760a; }
.pill-blue { background: rgba(11,90,200,.12); color: var(--mwc-blue); }

.card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 30px; box-shadow: 0 2px 10px rgba(17,18,49,.06); transition: transform .22s ease, box-shadow .22s ease; }
.card:hover { transform: translateY(-6px); box-shadow: 0 14px 38px rgba(17,18,49,.10); }
.card-top { border-top: 6px solid var(--mwc-cyan); }
.card-top-pink { border-top: 6px solid var(--mwc-pink); }
.card-top-green { border-top: 6px solid var(--mwc-green); }
.card h3 { margin-bottom: .4rem; }
.card .learn { font-weight: 800; display: inline-flex; gap: .35rem; margin-top: .6rem; text-decoration: none; }
.card-cyan .learn { color: var(--mwc-cyan); }
.card-pink .learn { color: var(--mwc-pink); }
.card-green .learn { color: var(--mwc-green); }

.icon-chip { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; color: #fff; margin-bottom: 18px; font-size: 1.5rem; box-shadow: 0 2px 10px rgba(17,18,49,.06); }
.bg-cyan { background: var(--mwc-cyan); } .bg-pink { background: var(--mwc-pink); }
.bg-green { background: var(--mwc-green); } .bg-blue { background: var(--mwc-blue); }
.bg-purple { background: var(--mwc-purple); } .bg-orange { background: var(--mwc-orange); }

.chip-row { display: flex; align-items: center; gap: .65rem; margin-bottom: 18px; }
.chip-row .icon-chip { margin-bottom: 0; }

@keyframes mwc-chip-bob { 0%, 100% { translate: 0 0; } 50% { translate: 0 -5px; } }
.icon-chip { animation: mwc-chip-bob 3.8s ease-in-out infinite; transition: scale .2s ease, box-shadow .2s ease; will-change: transform; }
.grid .card:nth-child(2) .icon-chip { animation-delay: .5s; }
.grid .card:nth-child(3) .icon-chip { animation-delay: 1s; }
.grid .card:nth-child(4) .icon-chip { animation-delay: .25s; }
.grid .card:nth-child(5) .icon-chip { animation-delay: .75s; }
.grid .card:nth-child(6) .icon-chip { animation-delay: 1.25s; }
.card:hover .icon-chip { scale: 1.08; box-shadow: 0 10px 24px rgba(17,18,49,.18); }

.subtabs { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.3rem 0 0; }
.subtab { display: inline-flex; align-items: center; padding: .55rem 1.15rem; border-radius: 999px; font-weight: 800; font-size: .98rem; text-decoration: none; color: var(--color-text); background: #fff; border: 2px solid var(--color-border); transition: transform .18s ease, box-shadow .18s ease, color .18s ease; }
.subtab:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(17,18,49,.12); }
.subtab.is-active { background: var(--mwc-gradient-btn); background-size: 160% 100%; color: #fff; border-color: transparent; }

.cta-band { background: var(--mwc-gradient-btn); background-size: 220% auto; border-radius: var(--radius-lg); padding: 48px; color: #fff; text-align: center; animation: mwc-drift 36s ease-in-out infinite; }
.cta-band.reveal { animation: mwc-rise .6s ease both, mwc-drift 36s ease-in-out infinite; }
.cta-band h2 { color: #fff; }
.cta-band .btn-ink { background: #fff; color: var(--mwc-ink); }

.list-check { list-style: none; margin-top: 1rem; padding: 0; }
.list-check li { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .7rem; font-weight: 600; }
.list-check li::before { content: "✓"; flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: rgba(61,187,30,.15); color: #2c9112; display: grid; place-items: center; font-weight: 800; font-size: .8rem; }

.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60; max-width: 720px; margin: 0 auto; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-lg); box-shadow: 0 24px 60px rgba(17,18,49,.18); padding: 16px 20px; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; font-size: .92rem; flex: 1 1 300px; color: var(--color-text); }
.cookie-banner a { color: var(--mwc-blue); font-weight: 700; }
.cookie-actions { display: flex; gap: .5rem; flex-wrap: wrap; }

.legal { max-width: 760px; }
.legal h2 { margin-top: 2.2rem; margin-bottom: .6rem; font-size: 1.5rem; }
.legal h3 { margin-top: 1.4rem; margin-bottom: .4rem; font-size: 1.15rem; }
.legal p { color: var(--color-text); margin-bottom: 1rem; }
.legal ul { margin: .4rem 0 1.1rem 1.3rem; }
.legal li { margin-bottom: .45rem; }
.legal a { color: var(--mwc-blue); font-weight: 700; text-decoration: underline; }
.legal .muted { color: var(--color-muted); }
.legal .note { background: var(--mwc-tint); border-radius: var(--radius); padding: 1rem 1.2rem; font-size: .92rem; }

.reveal { animation: mwc-rise .6s ease both; }
@keyframes mwc-rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .cols-3, .cols-4 { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .cta-band { padding: 32px 22px; }
}

@keyframes mwc-drift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

@keyframes mwc-pop { from { opacity: 0; transform: translateY(8px) scale(.96); } to { opacity: 1; transform: none; } }
.tag-row .pill { animation: mwc-pop .5s ease both; }
.tag-row .pill:nth-child(1) { animation-delay: .04s; }
.tag-row .pill:nth-child(2) { animation-delay: .10s; }
.tag-row .pill:nth-child(3) { animation-delay: .16s; }
.tag-row .pill:nth-child(4) { animation-delay: .22s; }
.tag-row .pill:nth-child(5) { animation-delay: .28s; }
.pill { transition: transform .18s ease, box-shadow .18s ease; }
.tag-row .pill:hover { transform: translateY(-2px); }

@keyframes mwc-hue { 0%, 100% { background: var(--mwc-cyan); } 20% { background: var(--mwc-blue); } 40% { background: var(--mwc-purple); } 60% { background: var(--mwc-pink); } 80% { background: var(--mwc-green); } }
@keyframes mwc-roam { 0% { transform: translate(-12vw, -8vh) scale(1); } 25% { transform: translate(58vw, 6vh) scale(1.18); } 50% { transform: translate(46vw, 56vh) scale(0.9); } 75% { transform: translate(-6vw, 48vh) scale(1.12); } 100% { transform: translate(-12vw, -8vh) scale(1); } }
body::before { content: ""; position: fixed; top: 0; left: 0; width: 55vmax; height: 55vmax; border-radius: 50%; background: var(--mwc-cyan); opacity: 0.10; filter: blur(70px); z-index: -1; pointer-events: none; animation: mwc-roam 55s ease-in-out infinite, mwc-hue 60s ease-in-out infinite; will-change: transform; }

/* =====================================================================
   HEADER / NAV (ported from Base.astro, incl. Work with us dropdown)
   ===================================================================== */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(251,253,254,.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--color-border); }
.nav { max-width: var(--wide-width); margin: 0 auto; padding: 12px 24px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; }
.brand-logo { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: .4rem; }
.nav-links a { font-weight: 700; color: var(--color-text); padding: .5rem .9rem; border-radius: 99px; font-size: .98rem; text-decoration: none; }
.nav-links a:hover { background: var(--mwc-tint); }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-parent .caret { font-size: .7em; opacity: .65; margin-left: 2px; }
.nav-sub { display: none; position: absolute; top: 100%; left: 0; padding-top: 8px; z-index: 60; }
.nav-sub-inner { min-width: 210px; background: #fff; border: 1px solid var(--color-border); border-radius: 14px; box-shadow: 0 16px 40px rgba(17,18,49,.16); padding: 8px; }
.nav-item:hover .nav-sub, .nav-item:focus-within .nav-sub { display: block; }
.nav-sub-inner a { display: block; white-space: nowrap; }
.nav-cta { color: #fff !important; }
.nav-cta:hover { color: #fff !important; background: var(--mwc-gradient-btn) !important; }
.nav-toggle { display: none; background: var(--mwc-ink); color: #fff; border: none; border-radius: 12px; width: 46px; height: 42px; font-size: 1.3rem; cursor: pointer; }

/* =====================================================================
   FOOTER (ported from Base.astro)
   ===================================================================== */
.site-footer { background: var(--mwc-ink); color: #aeb4d4; padding: 56px 0 30px; margin-top: 40px; }
.site-footer .rainbow-bar { margin-bottom: 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.footer-logo-card { background: #fff; border-radius: 16px; padding: 14px; display: inline-block; margin-bottom: 14px; }
.footer-logo-card img { height: 54px; width: auto; }
.footer-tagline { color: #aeb4d4; max-width: 38ch; }
.site-footer h4 { color: #fff; font-family: var(--font-serif); font-size: 1.05rem; margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { margin-bottom: .5rem; }
.site-footer a { color: #aeb4d4; font-weight: 600; text-decoration: none; }
.site-footer a:hover { color: var(--mwc-cyan); }
.footer-legal { font-size: .82rem; color: #8089ad; margin-top: 30px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-top: 14px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .9rem; }
.footer-powered a { color: var(--mwc-cyan); }

/* =====================================================================
   HOME HERO (ported from home.astro scoped styles)
   ===================================================================== */
.hero { position: relative; padding: 52px 0 46px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: start; }
.hero-title { font-size: clamp(2.6rem, 6vw, 4rem); line-height: 1.05; }
.hero-grid > div { position: relative; z-index: 1; }
.hero-logo-card { background: #fff; border-radius: 24px; padding: 16px 20px; display: grid; place-items: center; box-shadow: 0 24px 60px rgba(17,18,49,.16); border: 1px solid var(--color-border); margin-top: 38px; }
.hero-logo-card img { max-height: 215px; width: auto; }
.hero-pills { justify-content: center; margin-top: 1.2rem; }

/* Inner-page hero logo card — logo fills the card like the homepage. */
.page-logo-card { background: #fff; border-radius: 24px; padding: 18px 24px; display: grid; place-items: center; box-shadow: 0 24px 60px rgba(17,18,49,.16); border: 1px solid var(--color-border); }
.page-logo-card img { width: 100%; max-width: 460px; height: auto; display: block; }

/* Founder photo (About page, Meet our founder). */
.founder-photo { max-width: 360px; border-radius: 24px; overflow: hidden; box-shadow: 0 24px 60px rgba(17,18,49,.16); border: 1px solid var(--color-border); margin: 0 0 1.6rem; }
.founder-photo img { display: block; width: 100%; height: auto; }
.founder-bio { max-width: 820px; }

/* Founder row: photo cropped to match the card height, sitting close together. */
.founder-grid { grid-template-columns: 360px minmax(0, 520px); justify-content: center; align-items: stretch; gap: 32px; }
.founder-grid .founder-photo { position: relative; height: 100%; max-width: none; margin: 0; }
.founder-grid .founder-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
@media (max-width: 900px) {
	.founder-grid { grid-template-columns: 1fr; }
	.founder-grid .founder-photo { position: static; height: auto; max-width: 360px; margin: 0 auto 1.4rem; }
	.founder-grid .founder-photo img { position: static; height: auto; }
}

/* Forminator contact-form submit button — the form uses theme colour mode,
   so we style its button to match the brand gradient buttons. !important is
   needed to beat Forminator's per-form #forminator-module-19 styles. */
.forminator-ui.forminator-custom-form .forminator-button.forminator-button-submit,
.forminator-button.forminator-button-submit {
	display: inline-flex !important; align-items: center; justify-content: center; gap: .5rem;
	font-family: var(--font-sans) !important; font-weight: 800 !important; font-size: 1rem !important; line-height: 1.2 !important;
	padding: .85rem 1.7rem !important; border-radius: var(--radius-pill) !important;
	border: 2px solid transparent !important; cursor: pointer; color: #fff !important;
	background-image: var(--mwc-gradient-btn) !important; background-color: var(--mwc-cyan) !important; background-size: 220% auto !important;
	width: auto !important; min-height: 0 !important; height: auto !important;
	transition: transform .18s ease, box-shadow .18s ease, background-position .2s ease !important;
	animation: mwc-drift 30s ease-in-out infinite;
}
.forminator-ui.forminator-custom-form .forminator-button.forminator-button-submit:hover,
.forminator-button.forminator-button-submit:hover {
	color: #fff !important; transform: translateY(-2px) !important; box-shadow: 0 14px 38px rgba(17,18,49,.18) !important;
}

/* =====================================================================
   WhatsApp button (contact page)
   ===================================================================== */
.btn-whatsapp { display: inline-flex; align-items: center; gap: .55rem; background: #25D366; color: #fff; font-weight: 800; padding: .7rem 1.3rem; border-radius: 999px; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn-whatsapp:hover { background: #1ebe5b; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(37,211,102,.32); }
.btn-whatsapp svg { flex: none; }

/* Light styling for the WP contact form plugin output, to match brand */
.mwc-form { margin-top: 1.2rem; }
.mwc-form input[type=text], .mwc-form input[type=email], .mwc-form textarea {
  width: 100%; font-family: var(--font-sans); font-size: 1rem; color: var(--color-text);
  padding: .85rem 1rem; border: 2px solid var(--color-border); border-radius: 14px; background: #fff;
}
.mwc-form input:focus, .mwc-form textarea:focus { outline: none; border-color: var(--mwc-cyan); box-shadow: 0 0 0 4px rgba(6,196,230,.15); }

/* =====================================================================
   MOBILE NAV
   ===================================================================== */
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-logo-card, .hero-community { display: none; }
  .hero-pills { margin-top: 0; }
}
@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; align-items: stretch; background: #fff; border-bottom: 1px solid var(--color-border); padding: 14px 24px; gap: .3rem; }
  .nav-links.open { display: flex; }
  .nav-item { display: block; }
  .nav-sub { display: block; position: static; padding-top: 0; }
  .nav-sub-inner { min-width: 0; border: none; box-shadow: none; padding: 0 0 0 14px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .grad-text, .rainbow-bar, .eyebrow::before, .tag-row .pill, .btn-gradient, .cta-band, .cta-band.reveal,
  body::before, .icon-chip { animation: none; }
  .card:hover .icon-chip { scale: 1; }
}
