/*
 * Stay Connected — landing/maintenance page styles
 * Recreates the Claude Design "KelpSocial Maintenance v4" mockup.
 *
 * SCOPING: every rule is namespaced under `.kelp-sc` (the page wrapper) or
 * `body.kelp-stay-connected` (base/body rules). This both raises specificity
 * above BuddyBoss's globally-enqueued stylesheets and prevents the design's
 * generic class names (.page, .logo, .status, .btn, .field…) from colliding
 * with theme/plugin styles. Keyframes are prefixed `kelp-` for the same reason.
 *
 * This file is enqueued (with a filemtime version) only on the stay-connected
 * page — see buddyboss_theme_child_stay_connected_assets() in functions.php.
 */

:root {
  --forest: #0F3D2E;
  --forest-soft: #1c5240;
  --teal: #03847B;
  --teal-deep: #036b64;
  --coral: #FFA17A;
  --coral-soft: #FFC4AC;
  --coral-tint: #FFE2D4;
  --cream: #F7F4EC;
  --cream-deep: #EFE9DA;
  --white: #FFFFFF;
  --ink: #2c463b;
  --muted: #5d756a;
  --radius-card: 30px;
  --shadow-soft: 0 22px 60px -28px rgba(15, 61, 46, 0.34);
  font-size: clamp(15px, 0.55vw + 13px, 18px);
}

/* ---------- Base / body ---------- */
body.kelp-stay-connected {
  margin: 0;
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.kelp-sc, .kelp-sc *, .kelp-sc *::before, .kelp-sc *::after { box-sizing: border-box; }

/* ---------- Ambient background ---------- */
.kelp-sc .ambient { position: fixed; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.kelp-sc .ambient .glow { position: absolute; border-radius: 50%; filter: blur(8px); }
.kelp-sc .glow-a { width: 48vw; height: 48vw; max-width: 640px; max-height: 640px; top: -18vw; right: -12vw;
  background: radial-gradient(circle at 38% 38%, rgba(255,196,172,0.55), transparent 68%); }
.kelp-sc .glow-b { width: 40vw; height: 40vw; max-width: 520px; max-height: 520px; bottom: -16vw; left: -16vw;
  background: radial-gradient(circle at 50% 50%, rgba(3,132,123,0.16), transparent 70%); }

/* Keep the admin bar from overlapping the fixed ambient layer for logged-in users */
body.kelp-stay-connected.admin-bar .kelp-sc .ambient { top: 32px; }
@media (max-width: 782px) { body.kelp-stay-connected.admin-bar .kelp-sc .ambient { top: 46px; } }

.kelp-sc .page {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 46px) clamp(20px, 5vw, 64px) clamp(40px, 6vw, 72px);
  z-index: 1;
}

/* ---------- Header ---------- */
.kelp-sc header { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.kelp-sc .logo { display: inline-flex; align-items: center; text-decoration: none; line-height: 0; }
.kelp-sc .logo svg { height: clamp(74px, 9vw, 116px); width: auto; display: block; }

.kelp-sc .status {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  color: var(--teal-deep);
  background: rgba(3, 132, 123, 0.10);
}
.kelp-sc .status svg { width: 26px; height: 26px; }
@keyframes kelp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(3,132,123,0.45); }
  70% { box-shadow: 0 0 0 12px rgba(3,132,123,0); }
  100% { box-shadow: 0 0 0 0 rgba(3,132,123,0); }
}

/* ---------- Hero ---------- */
.kelp-sc .hero {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: clamp(30px, 5vw, 76px);
  margin-top: clamp(30px, 5vw, 64px);
}
.kelp-sc .hero__copy { position: relative; z-index: 2; min-width: 0; }

.kelp-sc .hero h1 {
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  color: var(--forest);
  font-size: clamp(2.5rem, 8.4vw, 90px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  text-wrap: balance;
  overflow-wrap: break-word;
}
.kelp-sc .hero h1 .accent { position: relative; display: inline-block; }
.kelp-sc .hero h1 .accent svg {
  position: absolute; left: -2%; right: -2%; bottom: -0.26em; width: 104%; height: 0.34em;
  color: var(--coral); overflow: visible;
}
.kelp-sc .hero h1 .accent path {
  stroke-dasharray: 320; stroke-dashoffset: 320;
  animation: kelp-draw 1.1s cubic-bezier(.2,.8,.2,1) 0.5s forwards;
}
@keyframes kelp-draw { to { stroke-dashoffset: 0; } }

.kelp-sc .hero__sub {
  font-size: 1.16rem;
  color: var(--ink);
  max-width: 31em;
  margin: 0 0 28px;
}

/* value points */
.kelp-sc .values { list-style: none; padding: 0; margin: 0 0 34px; display: grid; gap: 14px; }
.kelp-sc .values li { display: flex; align-items: center; gap: 14px; font-weight: 700; color: var(--forest); font-size: 1.02rem; }
.kelp-sc .values .vico {
  flex: none; width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--white); color: var(--teal-deep);
  box-shadow: 0 10px 22px -14px rgba(15,61,46,0.45);
  border: 1px solid rgba(3,132,123,0.12);
}
.kelp-sc .values .vico svg { width: 23px; height: 23px; }
.kelp-sc .values li b { color: var(--teal-deep); font-weight: 800; }

/* CTA */
.kelp-sc .cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.kelp-sc .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  min-height: 58px; padding: 0 30px; border-radius: 999px;
  font-family: "Nunito", sans-serif; font-weight: 800; font-size: 1.04rem;
  text-decoration: none; cursor: pointer; border: 2px solid transparent; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.kelp-sc .btn svg { width: 20px; height: 20px; }
.kelp-sc .btn--primary { background: var(--forest); color: var(--white); box-shadow: 0 16px 30px -16px rgba(15,61,46,0.75); }
.kelp-sc .btn--primary:hover { background: var(--forest-soft); transform: translateY(-2px); box-shadow: 0 20px 34px -16px rgba(15,61,46,0.7); }
.kelp-sc .btn--secondary { background: transparent; color: var(--teal-deep); border-color: var(--teal); }
.kelp-sc .btn--secondary:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }

/* ---------- Hero art ---------- */
.kelp-sc .hero__art { position: relative; display: flex; justify-content: center; }
.kelp-sc .hero__art-inner { position: relative; width: min(100%, 480px); }

.kelp-sc .blob {
  position: relative; z-index: 2;
  aspect-ratio: 0.9 / 1;
  background: linear-gradient(165deg, #FFB596 0%, var(--coral) 55%, #FF9468 100%);
  border-radius: 49% 51% 47% 53% / 44% 45% 55% 56%;
  box-shadow: 0 36px 70px -34px rgba(255,121,79,0.65), inset 0 0 0 1px rgba(255,255,255,0.25);
  display: flex; align-items: flex-start; justify-content: center;
  overflow: hidden;
}
.kelp-sc .blob__photo {
  width: 88%; height: auto; display: block;
  position: relative;
  margin-top: 20px;
  transform: translateX(-2%);
  filter: drop-shadow(0 14px 20px rgba(15,61,46,0.25));
}

/* decorative dot grids */
.kelp-sc .dots { position: absolute; z-index: 1; display: grid; gap: 9px; }
.kelp-sc .dots span { width: 8px; height: 8px; border-radius: 50%; }
.kelp-sc .dots--teal { grid-template-columns: repeat(5, 8px); top: -5%; left: -8%; }
.kelp-sc .dots--teal span { background: var(--teal); opacity: 0.55; }
.kelp-sc .dots--coral { grid-template-columns: repeat(6, 8px); bottom: 4%; right: -9%; }
.kelp-sc .dots--coral span { background: var(--coral); }

/* floating badges */
.kelp-sc .badge {
  position: absolute; z-index: 4;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--white); display: grid; place-items: center;
  box-shadow: 0 14px 26px -12px rgba(15,61,46,0.4);
  color: var(--teal-deep);
}
.kelp-sc .badge svg { width: 28px; height: 28px; }
.kelp-sc .badge--paw { bottom: 7%; left: -6%; color: var(--teal-deep); }
.kelp-sc .badge--heart { top: 4%; right: -4%; background: var(--forest); color: #fff; }
.kelp-sc .badge--heart svg { width: 26px; height: 26px; }

/* hand-drawn paw doodle */
.kelp-sc .paw-doodle { position: absolute; z-index: 3; width: 54px; color: var(--white); top: 10%; left: 8%; opacity: 0.9; transform: rotate(-12deg); }

.kelp-sc .floaty { animation: kelp-floaty 6s ease-in-out infinite; }
.kelp-sc .floaty-slow { animation: kelp-floaty 8.5s ease-in-out infinite; }
@keyframes kelp-floaty { 0%,100% { transform: translateY(0) rotate(var(--r,0deg)); } 50% { transform: translateY(-10px) rotate(var(--r,0deg)); } }

/* ---------- Newsletter ---------- */
.kelp-sc .newsletter-wrap { display: flex; justify-content: center; margin-top: clamp(46px, 6vw, 84px); }
.kelp-sc .newsletter {
  position: relative; width: min(100%, 600px);
  background: var(--white); border-radius: var(--radius-card);
  padding: clamp(28px, 3.6vw, 42px);
  box-shadow: var(--shadow-soft); border: 1px solid rgba(15,61,46,0.06);
  overflow: hidden;
}
.kelp-sc .newsletter::before {
  content: ""; position: absolute; top: -46px; right: -34px; width: 140px; height: 140px;
  background: radial-gradient(circle at 50% 50%, rgba(255,161,122,0.32), transparent 70%); border-radius: 50%;
}
.kelp-sc .newsletter__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 800; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-deep); margin: 0 0 12px;
}
.kelp-sc .newsletter__eyebrow svg { width: 17px; height: 17px; }
.kelp-sc .newsletter h2 {
  font-family: "Nunito", sans-serif; font-weight: 900; color: var(--forest);
  font-size: clamp(1.55rem, 2.6vw, 2rem); line-height: 1.06; margin: 0 0 8px; letter-spacing: -0.02em;
}
.kelp-sc .newsletter p.lede { margin: 0 0 22px; color: var(--muted); font-size: 0.98rem; max-width: 34em; }

/* ---------- Newsletter form (JetFormBuilder, form_id 6988) ----------
 * The [jet_fb_form] shortcode renders JetFormBuilder's own markup; these rules
 * restyle it to match the v4 design. Targets JFB 3.5.x classes, scoped under
 * .kelp-sc so they outrank the plugin's frontend CSS and never touch forms
 * elsewhere on the site. */
.kelp-sc .jet-form-builder { margin: 0; }
.kelp-sc .jet-form-builder .jet-form-builder-row { margin: 0 0 16px; padding: 0; border: 0; }
.kelp-sc .jet-form-builder .wp-block-columns,
.kelp-sc .jet-form-builder .wp-block-column { display: block; margin: 0; gap: 0; }

/* email / text inputs */
.kelp-sc .jet-form-builder input.jet-form-builder__field.text-field,
.kelp-sc .jet-form-builder input[type="email"],
.kelp-sc .jet-form-builder input[type="text"] {
  width: 100%; height: 56px; box-sizing: border-box;
  border: 1.5px solid var(--cream-deep); border-radius: 16px;
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23036b64'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M4%206h16v12H4z'/%3E%3Cpath%20d='m4%207%208%206%208-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: 17px 50%; background-size: 20px 20px;
  padding: 0 18px 0 50px; font-family: inherit; font-size: 1rem; color: var(--ink);
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.kelp-sc .jet-form-builder input::placeholder { color: #8aa098; }
.kelp-sc .jet-form-builder input.text-field:focus,
.kelp-sc .jet-form-builder input[type="email"]:focus {
  outline: none; border-color: var(--teal); background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(3,132,123,0.12);
}

/* consent checkbox row.
 * JetFormBuilder hides the native <input> (opacity:0; position:absolute) and shows
 * a pseudo box on `span::before` (blue, ~19px). We hide that pseudo box and take
 * over the native input as the visible control so it matches the design's rounded
 * teal checkbox. !important is required to beat JFB's frontend CSS + the per-field
 * inline <style> JFB injects (which force white/blue backgrounds and hide input). */
.kelp-sc .jet-form-builder fieldset.field-type-checkbox-field { margin: 0 0 22px; padding: 0; border: 0; min-width: 0; }
.kelp-sc .jet-form-builder .checkradio-wrap,
.kelp-sc .jet-form-builder .jet-form-builder__field-wrap.checkboxes-wrap { margin: 0; padding: 0; }
.kelp-sc .jet-form-builder label.for-checkbox {
  display: flex; align-items: flex-start; gap: 12px; cursor: pointer; margin: 0;
}
/* let the consent text flow normally (JFB sets the span to flex) */
.kelp-sc .jet-form-builder .for-checkbox > span {
  display: block !important;
  flex: 1 1 auto; gap: 0 !important;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
  margin-top: 4px;
}
/* hide JetFormBuilder's pseudo checkbox visuals */
.kelp-sc .jet-form-builder .for-checkbox > span::before,
.kelp-sc .jet-form-builder .for-checkbox > span::after { display: none !important; content: none !important; }
/* take over + style the native checkbox to match the design */
.kelp-sc .jet-form-builder input.checkboxes-field[type="checkbox"] {
  appearance: none !important; -webkit-appearance: none !important;
  position: static !important; opacity: 1 !important; clip: auto !important;
  flex: none !important; box-sizing: border-box !important; padding: 0 !important;
  width: 24px !important; min-width: 24px !important; height: 24px !important; margin: 1px 0 0 !important;
  border-radius: 8px !important; border: 1.5px solid #c4d2cb !important;
  background-color: var(--white) !important; background-image: none !important;
  box-shadow: none !important; cursor: pointer; transition: background-color .15s ease, border-color .15s ease;
  z-index: 2;
}
.kelp-sc .jet-form-builder input.checkboxes-field[type="checkbox"]:checked {
  border-color: var(--teal) !important;
  background-color: var(--teal) !important;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23ffffff'%20stroke-width='3'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='m5%2012%204%204%2010-10'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important; background-position: 50% !important; background-size: 15px 15px !important;
}
.kelp-sc .jet-form-builder input.checkboxes-field[type="checkbox"]:focus-visible { outline: none; box-shadow: 0 0 0 4px rgba(3,132,123,0.18) !important; }
.kelp-sc .jet-form-builder label.for-checkbox a { color: var(--teal-deep); text-decoration: underline; text-underline-offset: 2px; font-weight: 700; }

/* submit button */
.kelp-sc .jet-form-builder .field-type-submit-field { margin: 0; }
.kelp-sc .jet-form-builder .jet-form-builder__action-button-wrapper { display: block; margin: 0; padding: 0; }
.kelp-sc .jet-form-builder button.jet-form-builder__action-button {
  width: 100%; min-height: 56px; display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  border: none; border-radius: 999px; background: rgb(16, 133, 124); color: #fff;
  font-family: inherit; font-weight: 800; font-size: 1.05rem; cursor: pointer;
  box-shadow: 0 16px 30px -16px rgba(15,61,46,0.7);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.kelp-sc .jet-form-builder button.jet-form-builder__action-button::after {
  content: ""; flex: none; width: 21px; height: 21px;
  background: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23ffffff'%20stroke-width='2.2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M5%2012h14M13%206l6%206-6%206'/%3E%3C/svg%3E") no-repeat 50% / contain;
}
.kelp-sc .jet-form-builder button.jet-form-builder__action-button:hover { background: var(--teal-deep); transform: translateY(-2px); }

/* Cloudflare Turnstile (bot verification) row.
 * JetFormBuilder outputs a .captcha-token-container row; Turnstile renders its
 * widget (a fixed ~300x65 iframe) into it for real users. Center it within the card
 * and keep the vertical rhythm. We deliberately do NOT cap the widget width — the
 * Turnstile iframe has a fixed internal layout, so shrinking it would clip its
 * contents. On very narrow screens the card padding + body overflow-x:hidden absorb
 * the few px of overrun without any page scroll. */
.kelp-sc .jet-form-builder .captcha-token-container {
  display: flex; justify-content: center; align-items: center;
  margin: 0 0 16px; padding: 0; min-width: 0;
}
.kelp-sc .jet-form-builder .captcha-token-container > div { width: auto; }

/* Small phones only: the Turnstile widget's fixed 300px min width is wider than the
 * card content (~279px at 375px), so it spills past the email/button and toward the
 * edge. Scale the whole widget down to match the field width — this never clips the
 * widget (so Cloudflare's branding stays intact) and never reaches the screen edge.
 * Only applies below 396px, where the card content is narrower than 300px; tablets
 * and desktop (where 300px fits) are untouched. */
@media (max-width: 395px) {
  .kelp-sc .jet-form-builder .captcha-token-container > div {
    transform: scale(0.92);
    transform-origin: center;
  }
}

/* ---------- Form messages (general success / error) ----------
 * JetFormBuilder renders .jet-form-builder-message either inside
 * .jet-form-builder-messages-wrap OR as a sibling right after the </form> (inside
 * .jet-fb-form-block) — both carry .jet-form-builder-message, so we scope to
 * .kelp-sc and cover both placements rather than requiring a .jet-form-builder
 * ancestor. Styled as a rounded, on-brand notice with a leading icon. */
.kelp-sc .jet-form-builder-messages-wrap:empty { display: none; }
.kelp-sc .jet-form-builder-messages-wrap { margin: 0; }

.kelp-sc .jet-form-builder-message {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 16px 0 0; padding: 13px 18px; border-radius: 16px;
  font-family: inherit; font-size: 0.95rem; font-weight: 700; line-height: 1.45;
  text-align: center; border: 1px solid transparent;
}
.kelp-sc .jet-form-builder-message::before {
  content: ""; flex: none; width: 20px; height: 20px;
  background-position: center; background-repeat: no-repeat; background-size: contain;
}

/* success — teal */
.kelp-sc .jet-form-builder-message--success {
  color: var(--teal-deep);
  background-color: rgba(3, 132, 123, 0.10);
  border-color: rgba(3, 132, 123, 0.22);
}
.kelp-sc .jet-form-builder-message--success::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23036b64'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Ccircle%20cx='12'%20cy='12'%20r='9'/%3E%3Cpath%20d='m8.5%2012%202.5%202.5%204.5-5'/%3E%3C/svg%3E");
}

/* error — soft red */
.kelp-sc .jet-form-builder-message--error {
  color: #b02a25;
  background-color: rgba(207, 58, 50, 0.08);
  border-color: rgba(207, 58, 50, 0.22);
}
.kelp-sc .jet-form-builder-message--error::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23b02a25'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Ccircle%20cx='12'%20cy='12'%20r='9'/%3E%3Cpath%20d='M12%208v4.5'/%3E%3Cpath%20d='M12%2016h.01'/%3E%3C/svg%3E");
}

/* per-field validation errors (inline, under inputs) */
.kelp-sc .jet-form-builder__fields-errors,
.kelp-sc .jet-form-builder-message-error,
.kelp-sc .jet-form-builder__field-error { color: #b02a25; font-size: 0.82rem; font-weight: 700; margin: 6px 0 0; }

/* optional note paragraph */
.kelp-sc .newsletter .wp-block-paragraph { text-align: center; font-size: 0.84rem; color: #7d9189; margin: 14px 0 0; }
.kelp-sc .newsletter .wp-block-paragraph:empty { display: none; margin: 0; }

/* ---------- Footer ---------- */
.kelp-sc footer {
  margin-top: clamp(36px, 5vw, 58px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 22px; text-align: center; color: var(--muted); font-size: 0.9rem;
}
.kelp-sc footer a { color: var(--teal-deep); text-decoration: none; font-weight: 700; white-space: nowrap; }
.kelp-sc footer a:hover { text-decoration: underline; }
.kelp-sc footer .dot { flex: none; width: 4px; height: 4px; border-radius: 50%; background: #c0cfc7; }
.kelp-sc footer .foot-item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.kelp-sc footer svg { flex: none; width: 17px; height: 17px; }

/* ---------- Suppress site-wide Elementor popups on this landing page ----------
 * The membership-waitlist popup is injected via wp_footer() site-wide and overlaps
 * (and duplicates) this page's own newsletter. Hide it here. To stop it loading at
 * all, also exclude this page in Elementor → Templates → Popups → Display Conditions. */
body.kelp-stay-connected .elementor-popup-modal,
body.kelp-stay-connected .dialog-type-lightbox.elementor-popup-modal { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .kelp-sc .hero { grid-template-columns: 1fr; gap: 40px; }
  .kelp-sc .hero__copy { text-align: center; order: 1; }
  .kelp-sc .hero__sub { margin-left: auto; margin-right: auto; }
  .kelp-sc .values { max-width: 26em; margin-left: auto; margin-right: auto; }
  .kelp-sc .values li { text-align: left; }
  .kelp-sc .cta-row { justify-content: center; }
  .kelp-sc .hero__art { order: 2; }
  .kelp-sc .hero__art-inner { width: min(78%, 420px); }
}
@media (max-width: 560px) {
  .kelp-sc .status { display: none; }
  .kelp-sc header { justify-content: center; }
  .kelp-sc .logo { margin-top: 14px; }
  .kelp-sc .hero__art-inner { width: min(90%, 360px); }
  .kelp-sc .blob__photo { margin-top: 10px; }
  .kelp-sc .dots--teal { transform: scale(0.8); transform-origin: top left; left: -4%; }
  .kelp-sc .dots--coral { transform: scale(0.8); transform-origin: bottom right; right: -5%; }
  .kelp-sc .badge { width: 50px; height: 50px; }
  .kelp-sc .badge svg { width: 23px; height: 23px; }
  .kelp-sc .cta-row { flex-direction: column; }
  .kelp-sc .cta-row .btn { width: 100%; }
  .kelp-sc .btn { white-space: normal; padding: 14px 22px; line-height: 1.25; }
  /* footer row collapses to stacked items — drop the bullet dots so they don't dangle */
  .kelp-sc footer { flex-direction: column; gap: 12px; }
  .kelp-sc footer .dot { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .kelp-sc .floaty, .kelp-sc .floaty-slow, .kelp-sc .status .pulse { animation: none; }
  .kelp-sc .hero h1 .accent path { animation: none; stroke-dashoffset: 0; }
}
