/*!
Theme Name: Manofy
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: manofy
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Manofy is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/* Manofy Redesign — shared tokens + base */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700;800&family=Geist+Mono:wght@400;500&display=swap');
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
:root {
  --brand: #0077B5;
  --brand-50: color-mix(in oklab, var(--brand) 6%, #ffffff);
  --brand-100: color-mix(in oklab, var(--brand) 12%, #ffffff);
  --brand-200: color-mix(in oklab, var(--brand) 22%, #ffffff);
  --brand-300: color-mix(in oklab, var(--brand) 40%, #ffffff);
  --brand-500: var(--brand);
  --brand-600: color-mix(in oklab, var(--brand) 88%, #000000);
  --brand-700: color-mix(in oklab, var(--brand) 76%, #000000);
  --brand-900: color-mix(in oklab, var(--brand) 35%, #000000);

  /* Brand-adjacent accents for richer gradients (still within the blue family). */
  --accent-cyan: #4FB3D9;        /* lighter cyan for highlight gradients */
  --accent-deep: #003E5C;        /* deep navy for hero-dark sections */
  --accent-mist: #E8F1F7;        /* faint icy-blue surface tint */

  --bg: #f7f6f3;
  --bg-tint: #f2f2ee;
  --bg-mist: #f4f7fa;            /* very subtle blue-tinted neutral */
  --surface: #ffffff;
  --surface-2: #fbfaf7;
  --surface-mist: #fafcfe;       /* surface with a hint of brand */
  --ink: #0f1419;
  --ink-2: #2b3138;
  --ink-3: #5b6470;
  --ink-4: #8a929c;
  --line: rgba(15, 20, 25, 0.08);
  --line-2: rgba(15, 20, 25, 0.14);
  --line-brand: color-mix(in oklab, var(--brand) 18%, var(--line));

  /* Signature gradients — referenced throughout. Curated, not random. */
  --grad-brand: linear-gradient(120deg, var(--brand-700) 0%, var(--brand) 50%, var(--accent-cyan) 100%);
  --grad-brand-soft: linear-gradient(135deg, color-mix(in oklab, var(--brand) 14%, white) 0%, color-mix(in oklab, var(--accent-cyan) 18%, white) 100%);
  --grad-mist: linear-gradient(180deg, var(--accent-mist) 0%, var(--bg) 70%);
  --grad-aurora:
    radial-gradient(900px 420px at 15% 10%, color-mix(in oklab, var(--brand) 14%, transparent), transparent 60%),
    radial-gradient(800px 380px at 85% 30%, color-mix(in oklab, var(--accent-cyan) 16%, transparent), transparent 65%),
    radial-gradient(700px 360px at 50% 95%, color-mix(in oklab, var(--brand-700) 8%, transparent), transparent 70%);
  --grad-dark: linear-gradient(160deg, #0a1a26 0%, var(--accent-deep) 100%);

  --shadow-sm: 0 1px 2px rgba(15, 20, 25, 0.04), 0 1px 1px rgba(15, 20, 25, 0.03);
  --shadow-md: 0 8px 24px -8px rgba(15, 20, 25, 0.08), 0 2px 6px -2px rgba(15, 20, 25, 0.06);
  --shadow-lg: 0 24px 64px -16px rgba(15, 30, 60, 0.18), 0 8px 16px -8px rgba(15, 30, 60, 0.08);
  --shadow-brand: 0 24px 64px -20px color-mix(in oklab, var(--brand) 35%, transparent), 0 8px 16px -8px color-mix(in oklab, var(--brand) 20%, transparent);

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
}
html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
}
a {
        box-shadow: none;
        color:var(--brand);
    text-decoration: none;
}
/* page-wide subtle mist tint so the brand color permeates without being heavy */
.mfy-page {
  font-family: 'Geist', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.mfy-page * { box-sizing: border-box; }
.mfy-page h1, .mfy-page h2, .mfy-page h3, .mfy-page h4 {
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.mfy-page p { margin: 0; color: var(--ink-3); }
.mfy-page button { font: inherit; cursor: pointer; }
.mfy-page a { color: inherit; text-decoration: none; }

.mfy-shell { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.mfy-mono { font-family: 'Geist Mono', ui-monospace, monospace; font-feature-settings: 'tnum'; }

/* gradient text — signature brand sweep */
.mfy-grad-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}

/* italic emphasis — the signature editorial accent. Use for the single most
   important word/phrase in a heading. Pairs italic + brand gradient + slight
   weight balance so the italics feel intentional, not slanted-by-accident. */
.mfy-emph {
  font-style: italic;
  font-weight: 600;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  letter-spacing: -0.012em;
  padding-right: 0.04em; /* italic tails breathe past the bounding box */
}

/* dark-background italic variant (for case-study art tiles, etc.) */
.mfy-emph-light {
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(120deg, var(--accent-cyan), white);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}

/* gradient divider between sections — subtle hairline with brand glow */
.mfy-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in oklab, var(--brand) 40%, transparent), transparent);
  border: 0;
  margin: 0;
}

/* pills */
.mfy-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}

/* buttons */
.mfy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 14px !important;
    border: 0 solid transparent;
    white-space: nowrap;
    transition: transform .12s ease, box-shadow .15s ease, background .15s ease !important;
}
.mfy-btn-primary {
    background: linear-gradient(135deg, var(--brand-700) 0%, var(--brand) 55%, var(--accent-cyan) 130%);
    background-size: 200% 200%;
    background-position: 0% 50%;
    color: white !important;
    box-shadow: -1 1px 0 rgba(255, 255, 255, .25) inset, 0 0 0 1px 
color-mix(in oklab, var(--brand) 50%, transparent) inset, 0 8px 22px -8px 
color-mix(in oklab, var(--brand) 60%, transparent) !important;
    transition: transform .15s ease, box-shadow .2s ease, background-position .6s ease
}
.mfy-btn-primary:hover {
  transform: translateY(-1px);
  background-position: 100% 50%;
  box-shadow:
    0 1px 0 rgba(255,255,255,.25) inset,
    0 0 0 1px color-mix(in oklab, var(--brand) 50%, transparent) inset,
    0 12px 28px -8px color-mix(in oklab, var(--brand) 65%, transparent);
}
/* shared button refinement */
.mfy-btn-ghost {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  color: var(--ink);
  border-color: color-mix(in oklab, var(--brand) 10%, var(--line-2));
}
.mfy-btn-ghost:hover {
  background: var(--surface);
  border-color: var(--line-brand);
  box-shadow: 0 4px 12px -4px color-mix(in oklab, var(--brand) 16%, transparent);
}
.mfy-btn-text {
  background: transparent;
  color: var(--ink-2);
  padding: 10px 4px;
}

/* announcement bar */
.mfy-anno {
  background:
    linear-gradient(90deg, transparent, color-mix(in oklab, var(--brand) 20%, transparent) 20%, color-mix(in oklab, var(--brand) 30%, transparent) 80%, transparent),
    var(--ink);
  color: rgba(255,255,255,.92);
  font-size: 12.5px;
  font-weight: 400;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
  white-space: nowrap;
  position: relative;
}
.mfy-anno::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in oklab, var(--brand) 60%, transparent), transparent);
}
.mfy-anno .lbl {
  background: linear-gradient(90deg, var(--accent-cyan), var(--brand-300), var(--brand));
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.mfy-anno a { font-size:14px; color: white; text-decoration: underline; text-underline-offset: 3px; opacity: .9; }

/* nav */
.mfy-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  position: relative;
  z-index: 90;
}
/* Ensure the nav's parent shell also establishes a stacking context above
   downstream sections, so the dropdown menu paints on top of the hero. */
.mfy-page > .mfy-shell:has(> .mfy-nav) {
  position: relative;
  z-index: 90;
}
.mfy-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(14px);
  border: 1px solid color-mix(in oklab, var(--brand) 10%, var(--line));
  border-radius: 999px;
  padding: 5px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 4px 16px -4px color-mix(in oklab, var(--brand) 14%, transparent);
}
.mfy-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 999px;
  white-space: nowrap;
  transition: background .12s, color .12s;
}
.mfy-nav-link:hover { background: rgba(15,20,25,.04); color: var(--ink); }
.mfy-nav-link.active {
  background: var(--grad-brand);
  color: white;
  box-shadow:
    0 1px 0 rgba(255,255,255,.25) inset,
    0 4px 12px -4px color-mix(in oklab, var(--brand) 60%, transparent);
}

/* logo */
.mfy-logo,.custom-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
  img{
      max-width:90px;
      height:max-content;
      object-fit:contain;
  }
}
.mfy-logo-mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--grad-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 15px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.3),
    0 4px 12px -4px color-mix(in oklab, var(--brand) 50%, transparent);
}

/* ───── HERO ───── */
.mfy-hero {
  position: relative;
  padding: 200px 0 88px;
  text-align: center;
  overflow: hidden;
  min-height: 100vh;
}
.mfy-hero .wash {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: var(--grad-aurora);
}
/* Subtle grid line texture on top of aurora for that polished SaaS feel */
.mfy-hero::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(to right, color-mix(in oklab, var(--brand) 6%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in oklab, var(--brand) 6%, transparent) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, black 30%, transparent 75%);
  opacity: .5;
}
.mfy-hero > .mfy-shell { position: relative; z-index: 1; }

.hero-stars {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 12px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(14px);
  border: 1px solid color-mix(in oklab, var(--brand) 14%, var(--line));
  border-radius: 999px;
  margin-bottom: 32px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 4px 16px -4px color-mix(in oklab, var(--brand) 18%, transparent);
}
.hero-stars .testimonial {
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
}

/* hero-h1 refinement */
.hero-h1 {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.96;
  max-width: 795px;
  margin:0 auto;
    color:#fff;

}
[data-variant="2"] .hero-h1 {
  text-transform: none;
  font-size: 72px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
[data-variant="3"] .hero-h1 { font-size: 104px; line-height: 0.92; font-weight: 800; }

.mfy-hero .sub {
  max-width: 640px;
  margin: 22px auto 0;
  color: var(--ink-3);
  font-size: 17px;
  line-height: 1.55;
  text-wrap: pretty;
      color:#fff;

}

.hero-form {
  display: flex;
  gap: 6px;
  max-width: 480px;
  margin: 32px auto 0;
  background: var(--surface);
  border: 1px solid var(--line-2);
  padding: 6px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}
.hero-form input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 10px 18px;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  outline: none;
}
.hero-form input::placeholder { color: var(--ink-4); }
.hero-form button { padding: 10px 22px; font-size: 13.5px; }

.hero-helper {
  max-width: 460px;
  margin: 18px auto 0;
  font-size: 13px;
      color:#fff;
  line-height: 1.5;
}

/* variant washes (V2 baked in as the default) */
[data-variant="1"] .mfy-hero .wash {
  background: radial-gradient(900px 360px at 50% -10%, color-mix(in oklab, var(--brand) 9%, transparent), transparent 70%);
}
[data-variant="2"] { background: var(--bg); }
[data-variant="2"] .mfy-hero .wash { background: var(--grad-aurora); }
[data-variant="3"] { background: #f4f3ef; }
[data-variant="3"] .mfy-hero .wash {
  background:
    radial-gradient(900px 440px at 80% 20%, color-mix(in oklab, var(--brand) 18%, transparent), transparent 60%),
    radial-gradient(700px 360px at 10% 60%, color-mix(in oklab, var(--brand) 10%, transparent), transparent 65%);
}
[data-variant="3"] .mfy-nav-link.active { background: var(--ink); }
[data-variant="3"] .mfy-btn-primary { background: var(--ink); box-shadow: 0 6px 18px -6px rgba(0,0,0,.3); }

/* ───── SECTION SCAFFOLD ───── */
.mfy-section { padding: 96px 0; position: relative; }
.mfy-section .eyebrow {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
.mfy-section-head .eyebrow .pill,
.mfy-section .eyebrow .pill {
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, color-mix(in oklab, var(--brand) 10%, var(--surface)) 0%, color-mix(in oklab, var(--brand) 6%, var(--surface)) 100%);
  border: 1px solid color-mix(in oklab, var(--brand) 20%, var(--line));
  color: var(--brand-700);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 2px 8px -2px color-mix(in oklab, var(--brand) 15%, transparent);
}
.mfy-section h2 {
  font-size: 52px;
  letter-spacing: -0.04em;
  line-height: 1.04;
  max-width: 760px;
  font-weight: 600;
}
[data-variant="2"] .mfy-section h2 { font-weight: 600; }
.mfy-section .lede {
  max-width: 600px;
  font-size: 16px;
  color: var(--ink-3);
  margin-top: 18px;
  line-height: 1.55;
}
.mfy-section.center { text-align: center; }
.mfy-section.center h2, .mfy-section.center .lede { margin-left: auto; margin-right: auto; }
[data-variant="3"] .mfy-section h2 { font-weight: 700; }

/* ───── STEPS (video + schedule) ───── */
.mfy-step .mfy-stepbadge {
  display: inline-flex;
  margin-bottom: 22px;
}
.mfy-section.center .mfy-stepbadge { display: flex; justify-content: center; }
.mfy-stepbadge .step-n {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: var(--grad-dark);
  color: white;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 1px 0 rgba(255,255,255,.1) inset,
    0 4px 14px -4px color-mix(in oklab, var(--brand) 30%, transparent);
}
.mfy-stepbadge .step-n::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-300);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--brand) 30%, transparent);
}

/* ───── VIDEO MOCK ───── */
.mfy-video {
  margin-top: 48px;
  position: relative;
}
.vplayer {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background: var(--grad-dark);
  position: relative;
}
.vplayer::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), var(--brand), transparent);
  z-index: 3;
}
.vplayer-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background:
    radial-gradient(800px 400px at 30% 20%, rgba(255,255,255,.07), transparent 60%),
    radial-gradient(600px 300px at 80% 80%, color-mix(in oklab, var(--brand) 30%, transparent), transparent 60%),
    linear-gradient(135deg, #18293c 0%, #0a1929 100%);
}
.vplayer-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  padding: 40px 56px;
  pointer-events: none;
}
.vplayer-overlay.bottom { top: auto; bottom: 0; }
.vplayer-stat {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 14px 18px;
  color: white;
  max-width: 240px;
  text-align: left;
}
.vplayer-stat.right { text-align: right; }
.vplayer-stat.sm { padding: 10px 14px; }
.vplayer-stat .lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--brand-300);
}
.vplayer-stat .big {
  font-family: 'Geist Mono', monospace;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.vplayer-stat .big.sm { font-size: 18px; }
.vplayer-stat .caption {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  margin-top: 2px;
}
.vplayer-mid {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-badge {
  font-family: 'Geist Mono', monospace;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.04);
  padding: 16px 36px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
}
.vplayer-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--grad-brand);
  border: 4px solid rgba(255,255,255,.18);
  color: white;
   align-items: center; justify-content: center;
  padding-left: 4px;
  z-index: 2;
  box-shadow:
    0 1px 0 rgba(255,255,255,.3) inset,
    0 16px 44px -10px rgba(0,0,0,.5),
    0 0 0 1px rgba(0,0,0,.1),
    0 0 60px color-mix(in oklab, var(--brand) 40%, transparent);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  opacity: 0;
  pointer-events: none;
  .is-visible & {
    opacity: 1;
    pointer-events: auto;
    display: flex;
  }
}
.vplayer-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow:
    0 1px 0 rgba(255,255,255,.3) inset,
    0 20px 50px -10px rgba(0,0,0,.55),
    0 0 0 1px rgba(0,0,0,.1),
    0 0 80px color-mix(in oklab, var(--brand) 60%, transparent);
}
.vplayer-scrubber {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.7));
  padding: 28px 24px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.vplayer-scrubber .bar {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,.18);
  border-radius: 2px;
  overflow: hidden;
}
.vplayer-scrubber .bar .fill {
  height: 100%;
  width: 18%;
  background: var(--brand);
}
.vplayer-scrubber .time {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,.8);
}

/* ───── CALENDLY MOCK ───── */
.mfy-calendly {
  margin-top: 48px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 280px 1fr;
  overflow: hidden;
  text-align: left;
  position: relative;
}
.mfy-calendly::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 2px;
  background: var(--grad-brand);
  z-index: 2;
}
.cal-side {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, var(--surface-mist) 0%, var(--surface-2) 100%);
}
.cal-host { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.cal-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 12px -4px color-mix(in oklab, var(--brand) 50%, transparent);
}
.cal-name { font-weight: 600; font-size: 14px; color: var(--ink); }
.cal-role { font-size: 12.5px; color: var(--ink-3); }
.cal-title { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; margin: 0 0 18px; color: var(--ink); }
.cal-meta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.cal-meta > div {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--ink-3);
}
.cal-meta > div svg { color: var(--ink-4); }
.cal-blurb { font-size: 13px; color: var(--ink-3); line-height: 1.55; padding-top: 18px; border-top: 1px solid var(--line); }

.cal-card { padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 18px; }
.cal-header { display: flex; justify-content: space-between; align-items: center; }
.cal-nav {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-3);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cal-nav:hover { background: var(--surface-2); }
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-dow {
  text-align: center;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-4);
  padding: 8px 0;
}
.cal-day {
  aspect-ratio: 1;
  border: none;
  background: transparent;
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .12s, color .12s;
}
.cal-day:hover:not(.off) {
  background: color-mix(in oklab, var(--brand) 10%, var(--surface));
  color: var(--brand-700);
}
.cal-day.today {
  position: relative;
}
.cal-day.today::after {
  content: '';
  position: absolute;
  bottom: 5px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brand);
}
.cal-day.sel {
  background: var(--brand);
  color: white;
}
.cal-day.off { color: var(--ink-4); opacity: .5; cursor: default; }

.cal-slots { padding-top: 18px; border-top: 1px solid var(--line); }
.cal-slot-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.cal-slot {
  padding: 9px 0;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  font: inherit;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background .12s, border-color .12s;
}
.cal-slot:hover { border-color: var(--brand); color: var(--brand-700); }
.cal-slot.sel {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}

/* ───── PARTNERS ───── */
.mfy-partners {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.partner-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: left;
}
.partner-mark {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-200), var(--brand-300));
  color: var(--brand-700);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 17px;
}
.partner-name { font-weight: 600; font-size: 14.5px; color: var(--ink); }
.partner-role { font-size: 12.5px; color: var(--ink-3); }

/* ───── SERVICE DEEP-DIVES ───── */
.mfy-svc { padding: 56px 0; }
.svc-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.svc-split.flip { direction: rtl; }
.svc-split.flip > * { direction: ltr; }

.svc-num {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-4);
  margin-bottom: 12px;
}
.svc-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px 6px 8px;
  background: linear-gradient(180deg, color-mix(in oklab, var(--brand) 10%, var(--surface)) 0%, color-mix(in oklab, var(--brand) 6%, var(--surface)) 100%);
  border: 1px solid color-mix(in oklab, var(--brand) 22%, var(--line));
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--brand-700);
  margin-bottom: 16px;
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset;
}
.svc-badge .svc-icon {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
}
.svc-copy h2 { font-size: 44px; letter-spacing: -0.03em; }
.svc-bullets {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.svc-bullets li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.svc-bullets .check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--brand) 10%, var(--surface));
  border: 1px solid color-mix(in oklab, var(--brand) 22%, var(--line));
  color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
}

/* Service deep-dives — alternating subtle bg tint for visual rhythm */
.mfy-svc { padding: 64px 0; position: relative; }
.mfy-svc:nth-of-type(odd of .mfy-svc) {
  background:
    radial-gradient(700px 320px at 90% 50%, color-mix(in oklab, var(--brand) 4%, transparent), transparent 70%);
}
.mfy-svc:nth-of-type(even of .mfy-svc) {
  background:
    radial-gradient(700px 320px at 10% 50%, color-mix(in oklab, var(--accent-cyan) 5%, transparent), transparent 70%);
}
.svc-vis-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.svc-vis-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.svc-vis-card::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in oklab, var(--brand) 30%, transparent), transparent);
}
.vis-pad { padding: 24px 26px; }
.vis-h {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
}

/* Media — ad list */
.vis-ads { display: flex; flex-direction: column; gap: 10px; }
.vis-ad {
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 8px 4px;
  border-bottom: 1px solid var(--line);
}
.vis-ad:last-child { border-bottom: none; }
.vis-ad-th {
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: flex-end;
  padding: 6px 8px;
}
.vis-ad-nm { font-size: 13px; font-weight: 600; color: var(--ink); }
.vis-ad-pl { font-size: 11px; color: var(--ink-4); margin-top: 2px; }
.vis-ad-spend { font-size: 12px; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.vis-roas {
  padding: 4px 10px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--brand) 12%, var(--surface));
  color: var(--brand-700);
  font-weight: 700;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

/* Email — kpi row + flows */
.vis-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.vis-kpi-v {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand-700);
  font-family: 'Geist Mono', monospace;
}
.vis-kpi-l { font-size: 11px; color: var(--ink-3); margin-top: 2px; }
.vis-flows { display: flex; flex-direction: column; gap: 8px; }
.vis-flow {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 8px 4px;
}
.vis-flow-dot { width: 12px; height: 12px; border-radius: 4px; border: 1px solid color-mix(in oklab, var(--brand) 30%, var(--line)); }
.vis-flow-nm { font-size: 13px; font-weight: 500; color: var(--ink); }
.vis-flow-s { font-size: 11px; color: var(--ink-4); }
.vis-flow-r { font-size: 13px; font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }

/* CRO — comparison bars + pages */
.vis-cvr { display: flex; flex-direction: column; gap: 14px; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--line); }
.vis-cvr-row { display: grid; grid-template-columns: 60px 1fr 56px; gap: 14px; align-items: center; }
.vis-cvr-lbl { font-size: 12px; color: var(--ink-3); font-weight: 500; }
.vis-cvr-bar { height: 10px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.vis-cvr-bar .fill { height: 100%; border-radius: 999px; }
.vis-cvr-v { font-size: 14px; font-weight: 600; color: var(--ink); text-align: right; font-variant-numeric: tabular-nums; }
.vis-cvr-v.acc { color: var(--brand-700); font-size: 16px; }
.vis-pages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.vis-page {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  text-align: left;
}
.vis-page-tag {
  display: inline-block;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--brand-700);
  background: color-mix(in oklab, var(--brand) 12%, var(--surface));
  padding: 2px 6px;
  border-radius: 4px;
}
.vis-page-lbl { font-size: 12px; color: var(--ink-2); font-weight: 500; margin-top: 8px; }
.vis-page-delta { font-size: 18px; font-weight: 700; color: #1f7a4d; margin-top: 4px; font-variant-numeric: tabular-nums; }

/* Creative — 6 portrait cards */
.vis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.vis-creat {
  aspect-ratio: 4/5;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.vis-creat-l {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(6px);
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-2);
  align-self: flex-start;
}
.vis-creat-r {
  background: var(--brand);
  color: white;
  padding: 3px 7px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 700;
  font-family: 'Geist Mono', monospace;
  align-self: flex-end;
}

/* Advertorial — funnel */
.vis-funnel { display: flex; flex-direction: column; gap: 8px; }
.vfn-row { display: grid; grid-template-columns: 110px 1fr 80px; align-items: center; gap: 12px; }
.vfn-lbl { font-size: 12.5px; color: var(--ink-2); font-weight: 500; }
.vfn-bar { height: 22px; background: var(--surface-2); border-radius: 6px; overflow: hidden; }
.vfn-bar .fill { height: 100%; border-radius: 6px; }
.vfn-v { font-size: 12.5px; color: var(--ink); font-weight: 600; text-align: right; font-variant-numeric: tabular-nums; }

/* ───── BRANDS STRIP ───── */
.mfy-brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  opacity: .8;
}

/* ───── FINAL CTA ───── */
.mfy-finalcta {
  text-align: center;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-mist) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  padding: 72px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.mfy-finalcta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 260px at 50% 0%, color-mix(in oklab, var(--brand) 16%, transparent), transparent 70%),
    radial-gradient(500px 240px at 20% 100%, color-mix(in oklab, var(--accent-cyan) 14%, transparent), transparent 70%),
    radial-gradient(500px 240px at 80% 100%, color-mix(in oklab, var(--brand-700) 10%, transparent), transparent 70%);
  pointer-events: none;
}
.mfy-finalcta::after {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 2px;
  background: var(--grad-brand);
  opacity: .8;
}
.mfy-finalcta > * { position: relative; z-index: 1; }
.mfy-finalcta h2 { font-size: 44px; max-width: 640px; margin: 0 auto; }
.mfy-finalcta p { max-width: 480px; margin: 18px auto 30px; color: var(--ink-3); font-size: 16px; }
.mfy-finalcta .form {
  display: flex;
  gap: 6px;
  max-width: 440px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line-2);
  padding: 6px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.mfy-finalcta .form input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 10px 16px;
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  outline: none;
}
.mfy-finalcta .form input::placeholder { color: var(--ink-4); }

/* ───── FOOTER ───── */
.mfy-footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  font-size: 13px;
      background-image: linear-gradient(135deg, var(--brand-700) 0%, var(--brand) 55%, var(--accent-cyan) 130%);
}
.mfy-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.mfy-footer h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.mfy-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.mfy-footer ul a{
  color:#e2e2e2;
}
.mfy-footer ul a:hover { color: var(--ink); }
.mfy-footer .bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid #eee;
  font-size: 12.5px;
  color: #fff;
  a{
    color:#fff;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CONVERSION MODULES (full-fledged site additions)
   ═══════════════════════════════════════════════════════════════ */

/* large button variant */
.mfy-btn-lg { padding: 14px 24px; font-size: 15px; }

/* Hero CTAs + trust row */
.hero-ctas {
  display: inline-flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; justify-content: center;
}
.hero-trust {
  display: flex; gap: 24px; justify-content: center; margin-top: 36px;
  font-size: 14px; color: var(--ink-3);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 6px; color:#fff; }

/* shared section header */
.mfy-section-head {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 14px;
  margin-bottom: 56px;
  max-width: 720px;
}
.mfy-section-head.center { align-items: center; text-align: center; margin-left: auto; margin-right: auto; }
.mfy-section-head .eyebrow { display: flex; }
.mfy-section-head .lede { margin-top: 0; }

/* ─── Authority strip ─── */
.mfy-authority {
  padding: 56px 0 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, transparent, var(--surface-mist) 50%, transparent),
    var(--surface-2);
  position: relative;
}
.mfy-authority::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in oklab, var(--brand) 30%, transparent), transparent);
}
.auth-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.auth-stat { text-align: center; padding: 32px 16px; border: 1px solid var(--line); }
.auth-stat .v {
  font-size: 38px; font-weight: 700; letter-spacing: -0.03em;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
  font-family: 'Geist', sans-serif;
  font-variant-numeric: tabular-nums;
}
.auth-stat .l { font-size: 16px; color: var(--ink-3); margin-top: 6px; }
.auth-partners { padding-top: 28px; }
.auth-partners-lbl {
  display: block; text-align: center;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; color: var(--ink-4);
  text-transform: uppercase; margin-bottom: 18px;
}
.auth-partners-row { display: flex; align-items: center; overflow:auto; justify-content: center; gap: 16px; flex-wrap: no-wrap; }
.partner-wm {
gap: 8px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ink-2);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .6) inset, 0 1px 2px rgba(15, 20, 25, .03);
    transition: transform .15s, box-shadow .15s, border-color .15s;
    min-height: 120px;
    min-width: 120px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  img{
    max-width:90px;
    max-height:50px;
    object-fit:contain;
  }
}
.partner-wm:hover {
  transform: translateY(-1px);
  border-color: var(--line-brand);
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 6px 14px -4px color-mix(in oklab, var(--brand) 18%, transparent);
}
.partner-wm-mark {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: color-mix(in oklab, var(--brand) 14%, var(--surface));
  color: var(--brand-700);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 11px;
}

/* ─── Sticky top CTA bar ─── */
.mfy-sticky {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background:
    linear-gradient(90deg, rgba(15, 20, 25, 0.96), rgba(0, 62, 92, 0.96), rgba(15, 20, 25, 0.96));
  backdrop-filter: blur(14px);
  color: white;
  border-bottom: 1px solid color-mix(in oklab, var(--brand) 30%, rgba(255,255,255,.06));
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.mfy-sticky::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in oklab, var(--brand) 70%, transparent), transparent);
}
.mfy-sticky.on { transform: translateY(0); }
.mfy-sticky-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 40px;
  gap: 24px;
}
.mfy-sticky-pitch { display: flex; align-items: center; gap: 12px; min-width: 0; font-size: 13.5px; }
.mfy-sticky-pitch .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand-300);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--brand) 30%, transparent);
  flex-shrink: 0;
}
.mfy-sticky-pitch strong { font-weight: 600; }
.mfy-sticky-pitch .muted { color: rgba(255,255,255,.55); }
.mfy-sticky-trust { font-size: 12px; color: rgba(255,255,255,.55); white-space: nowrap; }

/* ─── Floating CTA ─── */
.mfy-floating {
  position: fixed; bottom: 24px; right: 24px; z-index: 99;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--brand-700) 0%, var(--brand) 50%, var(--accent-cyan) 130%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: white;
  border-radius: 999px;
  font-weight: 600; font-size: 14px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.25) inset,
    0 0 0 1px color-mix(in oklab, var(--brand) 40%, transparent),
    0 16px 36px -10px color-mix(in oklab, var(--brand) 70%, transparent);
  transform: translateY(120%);
  opacity: 0;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .25s, background-position .6s;
}
.mfy-floating.on { transform: translateY(0); opacity: 1; }
.mfy-floating:hover { transform: translateY(-3px); background-position: 100% 50%; }

/* Footer CTA strip — add subtle gradient bg */
.mfy-footer-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 36px 40px;
  margin-bottom: 48px;
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(500px 240px at 0% 100%, color-mix(in oklab, var(--brand) 10%, transparent), transparent 70%),
    radial-gradient(500px 240px at 100% 0%, color-mix(in oklab, var(--accent-cyan) 8%, transparent), transparent 70%),
    linear-gradient(180deg, var(--surface) 0%, var(--surface-mist) 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.mfy-footer-cta::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 2px;
  background: var(--grad-brand);
}
.mfy-footer-cta h3 {
  font-size: 32px; font-weight: 600; letter-spacing: -0.025em;
  color: var(--ink); margin-bottom: 8px;
}
.mfy-footer-cta p { font-size: 14.5px; color: var(--ink-3); max-width: 440px; line-height: 1.5; }

/* ─── Comparison table ─── */
.cmp-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.cmp-card::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in oklab, var(--brand) 40%, transparent), transparent);
  z-index: 2;
}
.cmp-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.cmp-row:last-child { border-bottom: none; }
.cmp-cell {
  padding: 18px 24px;
  font-size: 14px;
  color: var(--ink-2);
  display: flex; align-items: center;
  border-left: 1px solid var(--line);
}
.cmp-cell:first-child { border-left: none; }
.cmp-cell.cmp-feat { color: var(--ink); font-weight: 500; }
.cmp-cell.mfy {
  background:
    linear-gradient(180deg, color-mix(in oklab, var(--brand) 8%, var(--surface)) 0%, color-mix(in oklab, var(--brand) 4%, var(--surface)) 100%);
  color: var(--ink);
  border-left: 1px solid color-mix(in oklab, var(--brand) 22%, var(--line));
  border-right: 1px solid color-mix(in oklab, var(--brand) 22%, var(--line));
}
.cmp-cell.muted { color: var(--ink-4); }
.cmp-head { background: var(--surface-2); }
.cmp-head .cmp-cell { padding: 22px 24px; align-items: flex-start; flex-direction: column; gap: 4px; }
.cmp-head .cmp-cell.mfy {
  background:
    linear-gradient(180deg, color-mix(in oklab, var(--brand) 14%, var(--surface)) 0%, color-mix(in oklab, var(--brand) 8%, var(--surface)) 100%);
  border-left: 1px solid color-mix(in oklab, var(--brand) 22%, var(--line));
  border-right: 1px solid color-mix(in oklab, var(--brand) 22%, var(--line));
  position: relative;
}
.cmp-head .cmp-cell.mfy::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 2px;
  background: var(--grad-brand);
}
.cmp-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--grad-brand);
  color: white;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  margin-bottom: 6px;
  box-shadow: 0 4px 12px -4px color-mix(in oklab, var(--brand) 50%, transparent);
}
.cmp-name { font-size: 18px; font-weight: 600; color: var(--ink); }
.cmp-name.muted { color: var(--ink-3); }
.cmp-sub { font-size: 12.5px; color: var(--ink-3); }

/* ─── Stats counter ─── */
.mfy-statsbar {
  padding: 96px 0;
  background:
    radial-gradient(800px 320px at 50% 50%, color-mix(in oklab, var(--brand) 12%, transparent), transparent 70%),
    radial-gradient(400px 200px at 15% 30%, color-mix(in oklab, var(--accent-cyan) 10%, transparent), transparent 70%),
    radial-gradient(400px 200px at 85% 70%, color-mix(in oklab, var(--brand-700) 8%, transparent), transparent 70%),
    var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.mfy-statsbar::before {
  content: '';
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in oklab, var(--brand) 50%, transparent), transparent);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.anim-stat { text-align: center; padding: 0 12px; border-left: 1px solid var(--line); }
.anim-stat:first-child { border-left: none; }
.anim-stat-v {
  font-size: 60px; font-weight: 700; letter-spacing: -0.04em;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  filter: drop-shadow(0 2px 8px color-mix(in oklab, var(--brand) 15%, transparent));
}
.anim-stat-l { font-size: 13px; color: var(--ink-3); margin-top: 12px; line-height: 1.4; }
.stats-cap {
  text-align: center; margin-top: 40px;
  font-size: 15px; color: var(--ink-3); max-width: 540px; margin-left: auto; margin-right: auto;
}

/* ─── Process timeline ─── */
.proc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}
.proc-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding-bottom: 28px;
}
.proc-step:last-child { padding-bottom: 0; }
.proc-rail { display: flex; flex-direction: column; align-items: center; }
.proc-dot {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--brand) 8%, var(--surface));
  border: 1.5px solid color-mix(in oklab, var(--brand) 25%, var(--line));
  color: var(--brand-700);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  flex-shrink: 0;
}
.proc-line {
  flex: 1;
  width: 1.5px;
  background: linear-gradient(180deg, color-mix(in oklab, var(--brand) 25%, var(--line)) 0%, var(--line) 100%);
  margin: 8px 0;
}
.proc-body { padding-top: 6px; padding-bottom: 14px; }
.proc-body h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; }
.proc-body p { font-size: 14.5px; color: var(--ink-3); line-height: 1.55; }
.proc-cta { text-align: center; margin-top: 32px; }

/* ─── Case study cards ─── */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cs-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
}
.cs-card::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 2px;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity .2s;
  z-index: 1;
}
.cs-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-brand);
}
.cs-card:hover::before { opacity: 1; }
.cs-art {
  aspect-ratio: 16/9;
  padding: 20px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.cs-art::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(400px 200px at 80% 100%, color-mix(in oklab, var(--brand-700) 30%, transparent), transparent 60%);
  pointer-events: none;
}
.cs-art > * { position: relative; z-index: 1; }
.cs-brand-tag {
  display: inline-block;
  padding: 4px 11px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 11px; font-weight: 600;
  color: var(--ink-2);
  box-shadow: 0 2px 8px rgba(0, 30, 60, .12);
}
.cs-brand-name {
  font-size: 30px; font-weight: 700; letter-spacing: -0.02em;
  color: white;
  text-shadow: 0 2px 12px rgba(0, 30, 60, .35);
  font-style: italic;
  letter-spacing: -0.025em;
}
.cs-body { padding: 24px 22px; }
.cs-nums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.cs-num-v {
  font-size: 24px; font-weight: 700; letter-spacing: -0.02em;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.cs-num-l { font-size: 11.5px; color: var(--ink-3); margin-top: 4px; line-height: 1.4; }
.cs-quote-wrap { display: grid; grid-template-columns: 36px 1fr; gap: 12px; }
.cs-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-300), var(--brand-700));
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 12px;
}
.cs-quote { font-size: 13px; color: var(--ink-2); line-height: 1.5; font-style: italic; }
.cs-person { font-size: 11.5px; color: var(--ink-3); margin-top: 6px; }
.cs-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 16px; }
.cs-tag {
  padding: 3px 9px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 10.5px; font-weight: 500;
  color: var(--ink-3);
}

/* ─── Founder bio ─── */
.founder-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: flex-start;
  background:
    radial-gradient(600px 300px at 0% 0%, color-mix(in oklab, var(--brand) 6%, transparent), transparent 60%),
    radial-gradient(500px 260px at 100% 100%, color-mix(in oklab, var(--accent-cyan) 8%, transparent), transparent 65%),
    linear-gradient(180deg, var(--surface) 0%, var(--surface-mist) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  padding: 56px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.founder-card::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in oklab, var(--brand) 40%, transparent), transparent);
}
.founder-photo { display: flex; flex-direction: column; gap: 14px; }
.founder-photo-inner {
  aspect-ratio: 4/5;
  border-radius: 20px;
  background:
    radial-gradient(circle at 30% 30%, color-mix(in oklab, var(--accent-cyan) 60%, white) 0%, transparent 50%),
    linear-gradient(165deg, var(--brand) 0%, var(--brand-700) 50%, var(--accent-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,.2) inset,
    0 20px 50px -20px color-mix(in oklab, var(--brand) 50%, transparent);
}
.founder-photo-inner::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 80%, rgba(255,255,255,.15), transparent 40%),
    linear-gradient(160deg, transparent 60%, rgba(0,0,0,.1) 100%);
}
.founder-initials {
  position: relative;
  font-size: 96px; font-weight: 800;
  color: rgba(255,255,255,.95);
  letter-spacing: -0.05em;
}
.founder-status {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px; color: var(--ink-3);
  align-self: center;
}
.founder-status .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #1f7a4d;
  box-shadow: 0 0 0 3px rgba(31, 122, 77, 0.18);
}
.founder-copy h2 { font-size: 38px; letter-spacing: -0.025em; margin-bottom: 18px; }
.founder-bio { font-size: 15.5px; line-height: 1.6; color: var(--ink-3); }
.founder-cred {
  list-style: none; padding: 0; margin: 24px 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.founder-cred li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
}
.fcred-l {
  font-size: 20px; font-weight: 700; letter-spacing: -0.02em;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}
.fcred-s { font-size: 12px; color: var(--ink-3); margin-top: 3px; }
.founder-quote {
  margin-top: 24px;
  padding: 22px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  font-style: italic;
  position: relative;
}
.founder-quote-mark {
  font-style: normal;
  font-size: 28px;
  color: var(--brand);
  vertical-align: -8px;
  margin-right: 4px;
}
.founder-quote-mark.close { margin-left: 4px; margin-right: 0; }

/* ─── Testimonial carousel ─── */
.tc-viewport { overflow: hidden; }
.tc-track {
  display: flex;
  gap: 14px;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}
.tc-card {
  flex: 0 0 calc((100% - 28px) / 3);
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-mist) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  gap: 16px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.tc-card::before {
  content: '';
  position: absolute; left: 24px; right: 24px; top: 0;
  height: 2px;
  background: var(--grad-brand);
  border-radius: 0 0 2px 2px;
  opacity: .8;
}
.tc-quote {
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.55;
  flex: 1;
}
.tc-foot { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.tc-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-300), var(--brand-700));
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 13px;
}
.tc-name { font-weight: 600; font-size: 13.5px; color: var(--ink); }
.tc-role { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.tc-controls { display: flex; gap: 6px; justify-content: center; margin-top: 32px; }
.tc-dot {
    width: 28px;
    height: 4px;
    border: none;
    padding: 0 !important;
    background: var(--line-2) !important;
    border-radius: 2px !important;
    cursor: pointer !important;
    transition: background .15s;
}
.tc-dot.on { background: var(--brand); }
.tc-dot:hover { background: var(--ink-4); }
.tc-dot.on:hover { background: var(--brand); }

/* ─── ROI calculator ─── */
.roi-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.roi-card::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in oklab, var(--brand) 40%, transparent), transparent);
  z-index: 2;
}
.roi-inputs {
  padding: 40px 44px;
  display: flex; flex-direction: column; gap: 28px;
  border-right: 1px solid var(--line);
  background: var(--surface-2);
}
.roi-input-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px;
}
.roi-input label { font-size: 13.5px; font-weight: 500; color: var(--ink-2); }
.roi-input-val {
  font-family: 'Geist Mono', monospace;
  font-size: 22px; font-weight: 600; letter-spacing: -0.02em;
  color: var(--brand-700);
}
.roi-input input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: var(--line-2);
  border-radius: 999px;
  outline: none;
}
.roi-input input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid white;
  box-shadow: 0 0 0 1px var(--brand), 0 4px 10px -2px color-mix(in oklab, var(--brand) 50%, transparent);
  cursor: pointer;
}
.roi-input input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid white;
  box-shadow: 0 0 0 1px var(--brand);
  cursor: pointer;
}
.roi-input-ticks {
  display: flex; justify-content: space-between;
  font-size: 10.5px; color: var(--ink-4);
  margin-top: 8px;
}
.roi-assume {
  font-size: 12.5px; color: var(--ink-3); line-height: 1.55;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.roi-output {
  padding: 40px 44px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-mist) 100%);
}
.roi-output::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(500px 240px at 80% 20%, color-mix(in oklab, var(--brand) 14%, transparent), transparent 70%),
    radial-gradient(400px 200px at 20% 80%, color-mix(in oklab, var(--accent-cyan) 12%, transparent), transparent 70%);
  pointer-events: none;
}
.roi-output > * { position: relative; z-index: 1; }
.roi-out-lbl {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.07em;
  color: var(--ink-4); text-transform: uppercase;
}
.roi-out-v {
  font-size: 60px; font-weight: 700; letter-spacing: -0.04em;
  margin-top: 8px;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  filter: drop-shadow(0 4px 12px color-mix(in oklab, var(--brand) 20%, transparent));
}
.roi-out-lift {
  margin-top: 14px;
  padding: 12px 16px;
  background: color-mix(in oklab, var(--brand) 8%, var(--surface));
  border: 1px solid color-mix(in oklab, var(--brand) 18%, var(--line));
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--brand-700);
  font-weight: 600;
}
.roi-out-lift .up { color: #1f7a4d; margin-right: 4px; }
.roi-out-lift .muted { color: var(--ink-3); font-weight: 400; }

/* ─── Audit preview ─── */
.audit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.audit-card::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in oklab, var(--brand) 40%, transparent), transparent);
  z-index: 2;
}
.audit-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 20px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
}
.audit-bar-left { display: flex; gap: 6px; }
.audit-bar-left .dot { width: 10px; height: 10px; border-radius: 50%; }
.audit-bar-title {
  font-family: 'Geist Mono', monospace;
  font-size: 11.5px;
  color: var(--ink-3);
  text-align: center;
}
.audit-bar-right { display: flex; gap: 6px; justify-content: flex-end; }
.audit-pill {
  font-family: 'Geist Mono', monospace;
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink-3);
}
.audit-tabs {
  display: flex; gap: 4px; padding: 12px 20px 0;
  border-bottom: 1px solid var(--line);
}
.audit-tab {
  background: transparent !important;
  border: none;
  padding: 10px 16px !important;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3) !important;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color .12s, border-color .12s;
  box-shadow:unset !important;
}
.audit-tab:hover { color: var(--ink-2); }
.audit-tab.on {
  color: var(--brand-700);
  border-bottom-color: var(--brand);
}
.audit-body { padding: 32px 36px; }
.audit-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.audit-summary-lbl { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; color: var(--ink-4); text-transform: uppercase; }
.audit-summary-v { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); margin-top: 6px; }
.audit-summary-v.acc {
  background: linear-gradient(120deg, var(--brand-700), var(--brand));
  -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
}
.audit-findings { display: flex; flex-direction: column; gap: 12px; }
.audit-finding {
  display: grid;
  grid-template-columns: 64px 1fr 160px;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.audit-sev {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 5px;
  letter-spacing: 0.06em;
}
.audit-sev.high { background: rgba(176, 65, 65, 0.1); color: #b04141; }
.audit-sev.med  { background: rgba(217, 119, 6, 0.1); color: #ae6a08; }
.audit-sev.low  { background: rgba(31, 122, 77, 0.1); color: #1f7a4d; }
.audit-finding-t { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.audit-finding-d { font-size: 13px; color: var(--ink-3); margin-top: 5px; line-height: 1.5; }
.audit-impact {
  font-family: 'Geist Mono', monospace;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--brand-700);
  text-align: right;
  padding-top: 4px;
}
.audit-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-3);
}
.audit-footer strong { color: var(--ink); font-weight: 600; }

/* ─── FAQ ─── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s, background .2s;
}
.faq-item.on {
  border-color: color-mix(in oklab, var(--brand) 30%, var(--line));
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-mist) 100%);
  box-shadow: 0 8px 24px -10px color-mix(in oklab, var(--brand) 20%, transparent);
}
.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px !important;
    background: transparent !important;
    border: none;
    font: inherit;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: var(--ink) !important;
    text-align: left !important;
    cursor: pointer !important;
    box-shadow: unset !important;
}
.faq-icon {
  display: inline-flex;
  width: 28px; height: 28px;
  align-items: center; justify-content: center;
  background: var(--surface-2);
  border-radius: 50%;
  color: var(--ink-3);
  transition: transform .2s, background .15s;
  flex-shrink: 0;
}
.faq-item.on .faq-icon {
  transform: rotate(180deg);
  background: var(--grad-brand);
  color: white;
  box-shadow: 0 4px 12px -4px color-mix(in oklab, var(--brand) 50%, transparent);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease-out;
}
.faq-item.on .faq-a { max-height: 320px; }
.faq-a p {
  padding: 0 24px 22px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-3);
}

/* ─── Calendly embed slot (replaces mock when URL set) ─── */
.cal-embed {
  background: var(--surface);
  min-height: 540px;
}

/* ═══════════════════════════════════════════════════════════════
   Page-specific overrides for support pages (case studies, etc.)
   ═══════════════════════════════════════════════════════════════ */

.page-hero {
  padding: 64px 0 32px;
  position: relative;
  overflow: hidden;
}
.page-hero .wash {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: var(--grad-aurora);
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(to right, color-mix(in oklab, var(--brand) 6%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in oklab, var(--brand) 6%, transparent) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 30%, transparent 75%);
  opacity: .4;
}
.page-hero .mfy-shell { position: relative; z-index: 1; text-align: center; }
.page-hero .eyebrow { display: flex; justify-content: center; margin-bottom: 18px; }
.page-hero .eyebrow .pill,
.mfy-section-head .eyebrow .pill {
  /* inherits the gradient pill style above */
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, color-mix(in oklab, var(--brand) 10%, var(--surface)) 0%, color-mix(in oklab, var(--brand) 6%, var(--surface)) 100%);
  border: 1px solid color-mix(in oklab, var(--brand) 20%, var(--line));
  color: var(--brand-700);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 2px 8px -2px color-mix(in oklab, var(--brand) 15%, transparent);
}
.page-hero h1 {
  font-size: 64px; font-weight: 700; letter-spacing: -0.04em; line-height: 1.04;
  max-width: 840px; margin: 0 auto;
}
.page-hero .lede {
  font-size: 17px; color: var(--ink-3); max-width: 600px;
  margin: 24px auto 0; line-height: 1.55;
}
.page-hero .ctas {
  display: inline-flex; gap: 10px; margin-top: 32px; flex-wrap: wrap; justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SERVICE DETAIL PAGES (service-page.jsx) — Paid Ads, Lifecycle, CRO, etc.
   ═══════════════════════════════════════════════════════════════════════════ */

.svc-page-hero { padding: 72px 0 40px; }
.svc-page-hero h1 { max-width: 920px; }
.svc-page-hero .lede { max-width: 680px; }

/* Overview stat strip */
.svc-strip {
  padding: 32px 0 56px;
}
.svc-strip-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
}
.svc-strip-row::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 2px;
  background: var(--grad-brand);
}
.svc-strip-stat {
  padding: 32px 28px;
  border-left: 1px solid var(--line);
  text-align: left;
}
.svc-strip-stat:first-child { border-left: none; }
.svc-strip-stat .v {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.025em;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.svc-strip-stat .l {
  font-size: 12.5px;
  color: var(--ink-3);
  margin-top: 10px;
  line-height: 1.4;
}

/* Capabilities grid */
.svc-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.svc-cap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .15s, border-color .15s, box-shadow .15s;
  position: relative;
}
.svc-cap::before {
  content: '';
  position: absolute; left: 26px; top: 0;
  width: 28px; height: 2px;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity .15s;
}
.svc-cap:hover {
  transform: translateY(-2px);
  border-color: color-mix(in oklab, var(--brand) 26%, var(--line));
  box-shadow: var(--shadow-md);
}
.svc-cap:hover::before { opacity: 1; }
.svc-cap-ico {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: linear-gradient(135deg,
    color-mix(in oklab, var(--brand) 14%, var(--surface)) 0%,
    color-mix(in oklab, var(--accent-cyan) 16%, var(--surface)) 100%);
  border: 1px solid color-mix(in oklab, var(--brand) 22%, var(--line));
  color: var(--brand-700);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
  box-shadow: 0 1px 0 rgba(255,255,255,.6) inset;
}
.svc-cap h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
.svc-cap p { font-size: 13.5px; color: var(--ink-3); line-height: 1.55; margin: 0; }

/* Process — horizontal 4-step grid */
.svc-process-sec {
  background:
    radial-gradient(700px 320px at 15% 30%, color-mix(in oklab, var(--brand) 5%, transparent), transparent 70%),
    radial-gradient(600px 280px at 85% 70%, color-mix(in oklab, var(--accent-cyan) 6%, transparent), transparent 70%);
}
.svc-proc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.svc-proc-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: relative;
}
.svc-proc-step::before {
  content: '';
  position: absolute; left: 26px; top: 0;
  width: 28px; height: 2px;
  background: var(--grad-brand);
}
.svc-proc-n {
  font-size: 12px;
  font-weight: 600;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  letter-spacing: 0.06em;
}
.svc-proc-step h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; margin: 12px 0 8px; }
.svc-proc-step p { font-size: 13.5px; color: var(--ink-3); line-height: 1.55; margin: 0; }

/* Tech stack grid */
.svc-stack-sec {
  background:
    radial-gradient(800px 320px at 50% 0%, color-mix(in oklab, var(--brand) 4%, transparent), transparent 70%);
}
.svc-stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.svc-stack-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .15s, border-color .15s, box-shadow .15s;
}
.svc-stack-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in oklab, var(--brand) 25%, var(--line));
  box-shadow: var(--shadow-sm);
}
.svc-stack-mark {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg,
    color-mix(in oklab, var(--brand) 14%, var(--surface)) 0%,
    color-mix(in oklab, var(--accent-cyan) 16%, var(--surface)) 100%);
  border: 1px solid color-mix(in oklab, var(--brand) 22%, var(--line));
  color: var(--brand-700);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.svc-stack-name { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.svc-stack-cat { font-size: 12px; color: var(--ink-3); margin-top: 2px; }

/* Case highlight — large split card */
.svc-case-sec { padding: 56px 0; }
.svc-case-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.svc-case-card::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0;
  height: 2px;
  background: var(--grad-brand);
  z-index: 2;
}
.svc-case-art {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.svc-case-art::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(500px 240px at 80% 100%, color-mix(in oklab, var(--brand-700) 30%, transparent), transparent 60%);
  pointer-events: none;
}
.svc-case-art > * { position: relative; z-index: 1; }
.svc-case-tag-art {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  box-shadow: 0 2px 8px rgba(0, 30, 60, .12);
}
.svc-case-art-q {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-top: auto;
  text-wrap: balance;
}
.svc-case-body { padding: 48px 44px; }
.svc-case-quote {
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-2);
  font-style: italic;
  margin: 0 0 12px;
  text-wrap: pretty;
}
.svc-case-person { font-size: 13px; color: var(--ink-3); }
.svc-case-nums {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.svc-case-num-v {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.025em;
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.svc-case-num-l { font-size: 11.5px; color: var(--ink-3); margin-top: 6px; line-height: 1.4; }

/* Responsive */
@media (max-width: 1024px) {
  .svc-strip-row { grid-template-columns: 1fr 1fr; }
  .svc-strip-stat:nth-child(3) { border-left: none; border-top: 1px solid var(--line); }
  .svc-strip-stat:nth-child(4) { border-top: 1px solid var(--line); }
  .svc-cap-grid { grid-template-columns: 1fr 1fr; }
  .svc-proc-grid { grid-template-columns: 1fr 1fr; }
  .svc-stack-grid { grid-template-columns: 1fr 1fr; }
  .svc-case-card { grid-template-columns: 1fr; }
  .svc-case-art { aspect-ratio: 16/9; }
  .svc-case-art-q { font-size: 26px; }
}
@media (max-width: 880px) {
  .svc-strip-row { grid-template-columns: 1fr; }
  .svc-strip-stat { border-left: none !important; border-top: 1px solid var(--line); padding: 22px 24px; }
  .svc-strip-stat:first-child { border-top: none; }
  .svc-strip-stat .v { font-size: 28px; }
  .svc-cap-grid, .svc-proc-grid, .svc-stack-grid { grid-template-columns: 1fr; }
  .svc-case-body { padding: 28px 24px; }
  .svc-case-art { padding: 28px 24px; }
  .svc-case-art-q { font-size: 22px; }
  .svc-case-quote { font-size: 16px; }
  .svc-case-nums { grid-template-columns: 1fr 1fr; }
  .svc-case-num-v { font-size: 24px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAV DROPDOWN — Services menu
   ═══════════════════════════════════════════════════════════════════════════ */
.mfy-nav-item-dropdown { position: relative; }
.mfy-nav-item-dropdown > .mfy-nav-link {
  cursor: pointer;
}
.mfy-nav-item-dropdown > .mfy-nav-link svg {
  transition: transform .2s;
}
.mfy-nav-item-dropdown:hover > .mfy-nav-link svg,
.mfy-nav-item-dropdown.on > .mfy-nav-link svg {
  transform: rotate(180deg);
}

/* Invisible hover bridge: extends the parent's hover area down through the
   gap between the "Services" link and the dropdown panel. Without this, the
   mouse passes through dead space and the dropdown closes before the user
   can click an item. */
.mfy-nav-item-dropdown::after {
  content: '';
  position: absolute;
  left: -8px; right: -8px;
  top: 100%;
  height: 20px;
  z-index: 49;
}

.mfy-nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid color-mix(in oklab, var(--brand) 12%, var(--line));
  border-radius: 16px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 24px 48px -16px rgba(15, 30, 60, 0.25),
    0 4px 12px -4px color-mix(in oklab, var(--brand) 14%, transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .25s cubic-bezier(.2, .8, .2, 1);
  z-index: 50;
}
.mfy-nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: white;
  border-top: 1px solid color-mix(in oklab, var(--brand) 12%, var(--line));
  border-left: 1px solid color-mix(in oklab, var(--brand) 12%, var(--line));
  border-radius: 3px 0 0 0;
  z-index: 1;
}
.mfy-nav-item-dropdown:hover .mfy-nav-dropdown-menu,
.mfy-nav-item-dropdown:focus-within .mfy-nav-dropdown-menu,
.mfy-nav-item-dropdown.on .mfy-nav-dropdown-menu,
.mfy-nav-dropdown-menu:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mfy-nav-dropdown-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
  padding: 8px 12px 6px;
}

.mfy-nav-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 10px;
  transition: background .12s ease, color .12s ease;
}
.mfy-nav-dropdown-item:hover {
  background: linear-gradient(135deg,
    color-mix(in oklab, var(--brand) 8%, var(--surface)) 0%,
    color-mix(in oklab, var(--accent-cyan) 10%, var(--surface)) 100%);
  color: var(--brand-700);
}
.mfy-nav-dropdown-arrow {
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .15s, transform .15s;
  color: var(--brand);
}
.mfy-nav-dropdown-item:hover .mfy-nav-dropdown-arrow {
  opacity: 1;
  transform: translateX(0);
}

.mfy-nav-dropdown-cta {
  display: block;
  margin-top: 6px;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--brand-700);
  text-align: center;
  border-radius: 10px;
}
.mfy-nav-dropdown-cta:hover {
  background: color-mix(in oklab, var(--brand) 6%, transparent);
}

/* Mobile: dropdown becomes an inline expandable list inside the slide-in panel */
@media (max-width: 880px) {
  /* No invisible bridge needed on mobile — dropdown is inline */
  .mfy-nav-item-dropdown::after { display: none; }

  .mfy-nav-item-dropdown {
    width: 100%;
  }
  .mfy-nav-item-dropdown > .mfy-nav-link {
    width: 100%;
    justify-content: space-between;
  }
  .mfy-nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 0;
    max-height: 0;
    pointer-events: none;
    margin: 0;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    transition: max-height .25s ease, opacity .2s ease;
  }
  .mfy-nav-dropdown-menu::before { display: none; }
  .mfy-nav-item-dropdown.on .mfy-nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    max-height: 480px;
    padding: 4px 0 8px 16px;
    border-left: 2px solid color-mix(in oklab, var(--brand) 25%, var(--line));
    margin-left: 16px;
    transform: none;
  }
  .mfy-nav-dropdown-eyebrow { display: none; }
  .mfy-nav-dropdown-item {
    padding: 12px 14px;
    font-size: 14px;
  }
  .mfy-nav-dropdown-cta {
    margin-top: 4px;
    padding: 12px 14px;
    border-top: 1px solid color-mix(in oklab, var(--brand) 18%, var(--line));
    text-align: left;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE NAV TOGGLE + UTILITIES (always present, hidden via media query)
   ═══════════════════════════════════════════════════════════════════════════ */
.mfy-nav-actions {
  display: flex; gap: 8px; align-items: center;
}
.mfy-nav-resources { font-size: 13.5px; }
.mfy-nav-book { padding: 9px 18px; font-size: 13.5px; }
.mfy-nav-toggle {
  display: none;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in oklab, var(--brand) 10%, var(--line-2));
  border-radius: 12px;
  width: 42px; height: 42px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.mfy-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink-2);
  transition: transform .25s, opacity .2s;
}
.mfy-nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mfy-nav-toggle.open span:nth-child(2) { opacity: 0; }
.mfy-nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mfy-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 25, .35);
  backdrop-filter: blur(4px);
  z-index: 50;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TABLET — ≤ 1024px
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .mfy-shell { padding: 0 28px; }

  /* Hero */
  .mfy-hero { padding: 200ox 0 64px; }
  .hero-h1, [data-variant="2"] .hero-h1 { font-size: 56px !important; }
  .mfy-hero .sub { font-size: 16px; }

  /* Sections */
  .mfy-section { padding: 72px 0; }
  .mfy-section h2 { font-size: 40px; }
  .page-hero h1 { font-size: 48px; }

  /* Services hub grid */
  .svc-hub-grid { grid-template-columns: repeat(2, 1fr); }

  /* Service deep-dive split */
  .svc-split, .svc-split.flip {
    grid-template-columns: 1fr;
    gap: 36px;
    direction: ltr;
  }
  .svc-copy h2 { font-size: 32px; }

  /* Case study cards: 3 → 2 */
  .cs-grid { grid-template-columns: repeat(2, 1fr); }

  /* Founder card */
  .founder-card { grid-template-columns: 280px 1fr; gap: 32px; padding: 40px; }
  .founder-photo-inner { aspect-ratio: 4/5; }
  .founder-copy h2 { font-size: 30px; }

  /* ROI calc: keep 2-col but cut padding */
  .roi-inputs, .roi-output { padding: 32px; }
  .roi-out-v { font-size: 48px; }

  /* Stats counter */
  .anim-stat-v { font-size: 44px; }

  /* Comparison table — needs horizontal scroll if too narrow */
  .cmp-card { overflow-x: auto; }
  .cmp-row { min-width: 760px; }

  /* Testimonial carousel: 3 cards → 2 visible */
  .tc-card { flex: 0 0 calc((100% - 14px) / 2); }

  /* Calendly */
  .mfy-calendly { grid-template-columns: 240px 1fr; }

  /* Audit findings: drop impact column to its own row */
  .audit-finding {
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto;
  }
  .audit-impact {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
    padding-top: 8px;
    margin-top: 8px;
    border-top: 1px solid var(--line);
  }

  /* Team grid */
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .mfy-footer-grid { grid-template-columns: 1fr 1fr; }
  .auth-partners-row{
    justify-content: flex-start;      
    .partner-wm {
      min-height: 80px;
      min-width: 80px;              
      img {
        max-height: 32px;       
        max-width: 60px;                                  
      }
    }        
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE — ≤ 880px (phone-first refinements)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 880px) {
  .mfy-shell { padding: 0 20px; }

  /* ─── Announcement bar: shorten on mobile ─── */
  .mfy-anno {
    padding: 8px 16px;
    font-size: 11.5px;
    gap: 8px;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }
  .mfy-anno > span:nth-child(2), /* 📕 emoji */
  .mfy-anno > span:nth-child(3) { display: none; } /* "5+ E-books from..." */
  .mfy-anno a { white-space: nowrap; }

  /* ─── Nav: hamburger menu ─── */
  .mfy-nav {
    padding: 14px 0;
    position: relative;
    z-index: 60;
  }
  .mfy-nav-links {
    /* Slide-in panel */
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(85vw, 360px);
    background:
      radial-gradient(500px 240px at 100% 0%, color-mix(in oklab, var(--brand) 12%, transparent), transparent 70%),
      var(--surface);
    border-left: 1px solid var(--line);
    border-radius: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 80px 24px 24px;
    box-shadow: -16px 0 48px -16px rgba(15, 30, 60, .25);
    backdrop-filter: none;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.2, .8, .2, 1);
    z-index: 60;
  }
  .mfy-nav-links.open { transform: translateX(0); }
  .mfy-nav-link {
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 10px;
    justify-content: flex-start;
  }
  .mfy-nav-link.active {
    background: linear-gradient(180deg, color-mix(in oklab, var(--brand) 10%, var(--surface)) 0%, color-mix(in oklab, var(--brand) 6%, var(--surface)) 100%);
    color: var(--brand-700);
    box-shadow: none;
    border: 1px solid color-mix(in oklab, var(--brand) 20%, var(--line));
  }
  .mfy-nav-resources { display: none; }
  .mfy-nav-toggle { display: inline-flex; }
  .mfy-nav-book {
    padding: 8px 14px;
    font-size: 12.5px;
  }
  .mfy-nav-book svg { display: none; }
  .mfy-nav-backdrop {
    display: block;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s;
  }
  .mfy-nav-links.open ~ .mfy-nav-backdrop,
  .mfy-nav .mfy-nav-backdrop { opacity: 1; pointer-events: auto; }

  /* ─── Hero ─── */
  .mfy-hero { padding: 200px 0 56px; }
  .mfy-hero::after { background-size: 36px 36px; }
  .hero-stars {
    padding: 6px 12px 6px 10px;
    margin-bottom: 24px;
    font-size: 11.5px;
  }
  .hero-stars .testimonial { font-size: 12px; }
  .hero-h1, [data-variant="2"] .hero-h1 {
    font-size: 36px !important;
    line-height: 1.05 !important;
    letter-spacing: -0.035em !important;
  }
  .mfy-hero .sub {
    font-size: 15px;
    max-width: 100%;
    margin-top: 18px;
  }
  .hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 28px;
  }
  .hero-ctas .mfy-btn { width: 100%; }
  .hero-trust {
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
    font-size: 11.5px;
    justify-content: center;
  }

  /* ─── Authority strip ─── */
  .mfy-authority { padding: 36px 0 20px; }
  .auth-row {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 28px;
    gap: 0 0;
  }
  .auth-stat .v { font-size: 28px; }
  .auth-stat .l { font-size: 12px; }
  .partner-wm { font-size: 11.5px; padding: 6px 12px 6px 6px; }

  /* ─── Sections ─── */
  .mfy-section { padding: 56px 0; }
  .mfy-section h2 { font-size: 28px; line-height: 1.1; }
  .mfy-section .lede { font-size: 15px; margin-top: 14px; }
  .mfy-section-head { margin-bottom: 36px; gap: 12px; }

  /* ─── Video player ─── */
  .mfy-video { margin-top: 32px; }
  .vplayer-overlay { padding: 16px 18px; }
  .vplayer-stat {
    padding: 10px 12px;
    max-width: 50%;
  }
  .vplayer-stat .big { font-size: 16px; }
  .vplayer-stat .lbl { font-size: 9px; }
  .vplayer-stat .caption { font-size: 9.5px; }
  .vplayer-play { width: 56px; height: 56px; border-width: 3px; }
  .brand-badge { font-size: 28px; padding: 8px 16px; letter-spacing: 0.08em; }

  /* ─── Step badge ─── */
  .mfy-stepbadge .step-n { padding: 6px 12px; font-size: 10px; }

  /* ─── Comparison table → card-style stack ─── */
  .cmp-card { overflow: visible; border-radius: 18px; }
  .cmp-row { min-width: 0; grid-template-columns: 1fr; }
  .cmp-cell { border-left: none; border-top: 1px solid var(--line); padding: 14px 18px; font-size: 13px; }
  .cmp-cell:first-child { border-top: none; }
  .cmp-row:first-of-type .cmp-cell:first-child { border-top: none; }
  .cmp-cell.cmp-feat {
    background: var(--surface-2);
    font-weight: 600;
    font-size: 11.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-3);
    padding: 10px 18px;
  }
  .cmp-cell.mfy {
    border-left: none;
    border-right: none;
    border-top: 1px solid color-mix(in oklab, var(--brand) 22%, var(--line));
  }
  .cmp-head { background: transparent; }
  .cmp-head .cmp-cell {
    padding: 18px;
    text-align: left;
  }
  .cmp-head .cmp-cell.mfy::before {
    height: 2px;
  }
  .cmp-name { font-size: 16px; }

  /* ─── Process timeline ─── */
  .proc-step { gap: 16px; grid-template-columns: 40px 1fr; }
  .proc-dot { width: 36px; height: 36px; font-size: 11px; }
  .proc-body h3 { font-size: 18px; }
  .proc-body p { font-size: 13.5px; }

  /* ─── Services hub grid ─── */
  .svc-hub-grid { grid-template-columns: 1fr; gap: 10px; }

  /* ─── Service deep-dive ─── */
  .mfy-svc { padding: 36px 0; }
  .svc-split, .svc-split.flip {
    grid-template-columns: 1fr;
    gap: 24px;
    direction: ltr;
  }
  .svc-copy h2 { font-size: 26px; }
  .svc-bullets { gap: 10px; margin-top: 18px; }
  .svc-bullets li { font-size: 13.5px; }
  .svc-num { font-size: 11px; }
  .svc-badge { font-size: 10px; padding: 5px 10px 5px 7px; }
  .vis-pad { padding: 18px 18px; }
  .vis-ad { grid-template-columns: 42px 1fr auto auto; gap: 10px; padding: 6px 2px; }
  .vis-ad-th { height: 36px; padding: 4px 6px; }
  .vis-ad-nm { font-size: 12px; }
  .vis-ad-pl { font-size: 10.5px; }
  .vis-roas { font-size: 11px; padding: 3px 8px; }
  .vis-kpi-v { font-size: 20px; }
  .vis-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .vis-creat-l, .vis-creat-r { font-size: 9px; padding: 2px 6px; }
  .vfn-row { grid-template-columns: 90px 1fr 60px; gap: 8px; }
  .vfn-lbl { font-size: 11.5px; }
  .vfn-v { font-size: 11.5px; }

  /* ─── Stats counter ─── */
  .mfy-statsbar { padding: 56px 0; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .anim-stat { padding: 0 12px; }
  .anim-stat:nth-child(2n+1) { border-left: none; }
  .anim-stat-v { font-size: 36px; }
  .anim-stat-l { font-size: 12px; margin-top: 8px; }
  .stats-cap { font-size: 14px; margin-top: 28px; }

  /* ─── Case study cards ─── */
  .cs-grid { grid-template-columns: 1fr; gap: 14px; }
  .cs-brand-name { font-size: 22px; }
  .cs-num-v { font-size: 20px; }
  .cs-num-l { font-size: 11px; }

  /* Case study DETAIL pages (case-studies.html) */
  .csd-grid { grid-template-columns: 1fr; gap: 24px; }
  .csd-numgrid { grid-template-columns: 1fr 1fr; }
  .csd-num-v { font-size: 24px; }
  .csd-quote { font-size: 17px; }
  .csd-h2 { font-size: 22px; }

  /* ─── ROI calculator ─── */
  .roi-card { grid-template-columns: 1fr; }
  .roi-inputs {
    padding: 24px 22px;
    border-right: none;
    border-bottom: 1px solid var(--line);
    gap: 20px;
  }
  .roi-output { padding: 28px 22px; }
  .roi-out-v { font-size: 38px; }
  .roi-input-val { font-size: 18px; }

  /* ─── Founder bio ─── */
  .founder-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 24px;
  }
  .founder-photo { max-width: 240px; margin: 0 auto; width: 100%; }
  .founder-copy h2 { font-size: 24px; }
  .founder-bio { font-size: 14.5px; }
  .founder-cred { grid-template-columns: 1fr 1fr; gap: 10px; }
  .fcred-l { font-size: 18px; }
  .founder-quote { padding: 18px 20px; font-size: 14px; }

  /* ─── Testimonial carousel ─── */
  .tc-card {
    flex: 0 0 100%;
    padding: 22px 20px;
  }
  .tc-quote { font-size: 14.5px; }

  /* ─── Audit preview ─── */
  .audit-body { padding: 22px 18px; }
  .audit-summary { grid-template-columns: 1fr; gap: 14px; padding-bottom: 18px; margin-bottom: 18px; }
  .audit-summary-v { font-size: 18px; }
  .audit-finding {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px 16px;
  }
  .audit-sev { width: -moz-fit-content; width: fit-content; }
  .audit-finding-t { font-size: 13.5px; }
  .audit-finding-d { font-size: 12.5px; }
  .audit-impact {
    grid-column: 1;
    grid-row: auto;
    padding-top: 8px;
    margin-top: 0;
    border-top: 1px solid var(--line);
    text-align: left;
    font-size: 12px;
  }
  .audit-footer { grid-template-columns: 1fr; gap: 16px; text-align: left; }
  .audit-tabs { padding: 8px 14px 0; gap: 0; overflow-x: auto; }
  .audit-tab { font-size: 12.5px; padding: 8px 12px; flex-shrink: 0; }
  .audit-bar-title { font-size: 10px; }
  .audit-bar-right .audit-pill:nth-child(2) { display: none; }

  /* ─── Schedule (Calendly) ─── */
  .mfy-calendly {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }
  .cal-side {
    padding: 24px 22px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .cal-title { font-size: 18px; }
  .cal-card { padding: 20px 22px; }
  .cal-day { font-size: 12px; }
  .cal-slot { font-size: 11.5px; padding: 8px 0; }
  .cal-slot-grid { grid-template-columns: repeat(3, 1fr); }

  /* ─── Final CTA ─── */
  .mfy-finalcta { padding: 40px 24px; }
  .mfy-finalcta h2 { font-size: 26px; }
  .mfy-finalcta p { font-size: 14.5px; margin: 14px auto 22px; }
  .mfy-finalcta .form {
    flex-direction: column;
    background: transparent;
    border: none;
    padding: 0;
    gap: 8px;
    box-shadow: none;
  }
  .mfy-finalcta .form input {
    width: 100%;
    background: var(--surface);
    border: 1px solid var(--line-2);
    border-radius: 12px;
    padding: 12px 16px;
  }
  .mfy-finalcta .form button { width: 100%; padding: 12px 18px !important; }

  /* ─── FAQ ─── */
  .faq-q { padding: 16px 18px; font-size: 14.5px; gap: 14px; }
  .faq-a p { padding: 0 18px 18px; font-size: 13.5px; }

  /* ─── Hero email form ─── */
  .hero-form {
    flex-direction: column;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: 8px;
    max-width: 100%;
    margin-top: 24px;
  }
  .hero-form input {
    background: var(--surface);
    border: 1px solid var(--line-2);
    border-radius: 12px;
    padding: 12px 16px;
  }
  .hero-form button { width: 100%; padding: 12px 18px !important; }
  .hero-helper { font-size: 12px; margin-top: 14px; }

  /* ─── Trusted brands strip ─── */
  .mfy-brands-row { gap: 24px; }
  .mfy-brands-row > span { font-size: 15px !important; }

  /* ─── Sticky bar — simpler on mobile ─── */
  .mfy-sticky-inner {
    padding: 8px 16px;
    gap: 10px;
  }
  .mfy-sticky-pitch { font-size: 12px; gap: 8px; min-width: 0; }
  .mfy-sticky-pitch .muted { display: none; }
  .mfy-sticky-trust { display: none; }
  .mfy-sticky-pitch strong { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

  /* ─── Floating CTA — smaller pill ─── */
  .mfy-floating {
    bottom: 16px; right: 16px;
    padding: 11px 16px;
    font-size: 12.5px;
  }

  /* ─── Page hero ─── */
  .page-hero { padding: 32px 0 16px; }
  .page-hero h1 { font-size: 34px; line-height: 1.08; }
  .page-hero .lede { font-size: 14.5px; }
  .page-hero .ctas { flex-direction: column; width: 100%; gap: 10px; }
  .page-hero .ctas .mfy-btn { width: 100%; }

  /* ─── About page principles + team ─── */
  .principles { grid-template-columns: 1fr; gap: 10px; }
  .principle { padding: 22px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .about-story h3 { font-size: 19px; }
  .about-story p { font-size: 14.5px; }

  /* ─── Footer ─── */
  .mfy-footer-cta {
    grid-template-columns: 1fr;
    padding: 24px 22px;
    text-align: center;
  }
  .mfy-footer-cta h3 { font-size: 22px; }
  .mfy-footer-cta p { font-size: 13.5px; margin: 0 auto; }
  .mfy-footer-cta .mfy-btn { width: 100%; justify-content: center; }
  .mfy-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .mfy-footer .bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    font-size: 11.5px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SMALL PHONES — ≤ 480px (tightest)
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .mfy-shell { padding: 0 16px; }
  .hero-h1, [data-variant="2"] .hero-h1 { font-size: 30px !important; }
  .mfy-section h2 { font-size: 24px; }
  .page-hero h1 { font-size: 28px; }
  .anim-stat-v { font-size: 30px; }
  .roi-out-v { font-size: 32px; }
  .vplayer-stat { padding: 7px 9px; }
  .vplayer-stat .big { font-size: 13px; }
  .vplayer-stat .big.sm { font-size: 11px; }
  .vplayer-stat .lbl { font-size: 8.5px; }
  .vplayer-stat .caption { display: none; }
  .brand-badge { font-size: 20px; padding: 6px 12px; }
  .auth-stat .v { font-size: 24px; }
  .csd-numgrid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .founder-cred { grid-template-columns: 1fr; }
  .mfy-footer-grid { grid-template-columns: 1fr; }
  .cal-slot-grid { grid-template-columns: 1fr 1fr; }
  /* Hide brand-strip wordmarks that don't fit two-up nicely */
  .mfy-brands-row > span:nth-child(n+5) { display: none; }
}


/* compare table check / cross markers (static-HTML build) */
.cmp-yes,.cmp-no{display:inline-flex;width:18px;height:18px;border-radius:50%;align-items:center;justify-content:center;margin-right:8px;flex-shrink:0;vertical-align:middle;}
.cmp-yes{background:var(--brand);color:#fff;}
.cmp-no{background:rgba(15,20,25,0.06);color:var(--ink-4);}


/* ════ Partners page styles (merged for full-site stylesheet) ════ */
/* Featured partner tier card */
    .ptr-tier-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }
    .ptr-tier {
      background: linear-gradient(180deg, var(--surface) 0%, var(--surface-mist) 100%);
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      padding: 36px 32px;
      position: relative;
      overflow: hidden;
      transition: transform .2s, box-shadow .2s, border-color .2s;
    }
    .ptr-tier::before {
      content: '';
      position: absolute; left: 0; right: 0; top: 0;
      height: 2px;
      background: var(--grad-brand);
    }
    .ptr-tier:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
      border-color: color-mix(in oklab, var(--brand) 28%, var(--line));
    }
    .ptr-tier-head {
      display: flex; align-items: center; gap: 18px;
      margin-bottom: 20px;
    }
    .ptr-tier-mark {
      width: 58px; height: 58px;
      border-radius: 14px;
      background: var(--grad-brand);
      color: white;
      display: inline-flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 24px;
      box-shadow:
        0 1px 0 rgba(255,255,255,.25) inset,
        0 8px 20px -6px color-mix(in oklab, var(--brand) 45%, transparent);
    }
    .ptr-tier-name { font-size: 24px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); }
    .ptr-tier-status {
      display: inline-block;
      margin-top: 4px;
      padding: 3px 9px;
      border-radius: 999px;
      background: color-mix(in oklab, var(--brand) 10%, var(--surface));
      border: 1px solid color-mix(in oklab, var(--brand) 22%, var(--line));
      color: var(--brand-700);
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .ptr-tier-desc {
      font-size: 14.5px;
      color: var(--ink-3);
      line-height: 1.55;
    }
    .ptr-tier-meta {
      display: flex; gap: 18px;
      margin-top: 20px;
      padding-top: 18px;
      border-top: 1px solid var(--line);
      font-size: 12.5px;
      color: var(--ink-3);
    }
    .ptr-tier-meta strong {
      color: var(--ink);
      font-weight: 600;
    }

    /* All-partners logo grid */
    .ptr-logo-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    .ptr-logo-card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      display: flex; flex-direction: column; align-items: flex-start;
      gap: 14px;
      transition: transform .15s, border-color .15s, box-shadow .15s;
    }
    .ptr-logo-card:hover {
      transform: translateY(-2px);
      border-color: color-mix(in oklab, var(--brand) 24%, var(--line));
      box-shadow: var(--shadow-sm);
    }
    .ptr-logo-mark {
      width: 44px; height: 44px;
      border-radius: 12px;
      background: linear-gradient(135deg,
        color-mix(in oklab, var(--brand) 14%, var(--surface)) 0%,
        color-mix(in oklab, var(--accent-cyan) 16%, var(--surface)) 100%);
      border: 1px solid color-mix(in oklab, var(--brand) 22%, var(--line));
      color: var(--brand-700);
      display: inline-flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 17px;
      box-shadow: 0 1px 0 rgba(255,255,255,.6) inset;
    }
    .ptr-logo-name { font-size: 15px; font-weight: 600; color: var(--ink); }
    .ptr-logo-cat { font-size: 12px; color: var(--ink-3); }

    /* Why partner with us */
    .ptr-pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .ptr-pillar {
      padding: 28px 26px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      position: relative;
    }
    .ptr-pillar::before {
      content: '';
      position: absolute; left: 26px; top: 0;
      width: 32px; height: 2px;
      background: var(--grad-brand);
    }
    .ptr-pillar-ico {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: linear-gradient(135deg,
        color-mix(in oklab, var(--brand) 14%, var(--surface)) 0%,
        color-mix(in oklab, var(--accent-cyan) 16%, var(--surface)) 100%);
      border: 1px solid color-mix(in oklab, var(--brand) 22%, var(--line));
      color: var(--brand-700);
      display: inline-flex; align-items: center; justify-content: center;
      margin-bottom: 14px;
    }
    .ptr-pillar h4 { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; margin-bottom: 8px; }
    .ptr-pillar p { font-size: 13.5px; color: var(--ink-3); line-height: 1.55; }

    /* Become a partner card */
    .ptr-become {
      background:
        radial-gradient(500px 240px at 0% 100%, color-mix(in oklab, var(--brand) 10%, transparent), transparent 70%),
        radial-gradient(500px 240px at 100% 0%, color-mix(in oklab, var(--accent-cyan) 8%, transparent), transparent 70%),
        linear-gradient(180deg, var(--surface) 0%, var(--surface-mist) 100%);
      border: 1px solid var(--line);
      border-radius: var(--radius-2xl);
      padding: 56px 48px;
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 40px;
      align-items: center;
      box-shadow: var(--shadow-md);
    }
    .ptr-become::before {
      content: '';
      position: absolute; left: 0; right: 0; top: 0;
      height: 2px;
      background: var(--grad-brand);
    }
    .ptr-become h2 {
      font-size: 36px;
      font-weight: 600;
      letter-spacing: -0.025em;
      line-height: 1.1;
      color: var(--ink);
      margin-bottom: 12px;
    }
    .ptr-become p {
      font-size: 15.5px;
      color: var(--ink-3);
      max-width: 540px;
      line-height: 1.55;
    }

    @media (max-width: 1024px) {
      .ptr-tier-grid, .ptr-pillars { grid-template-columns: 1fr 1fr; }
      .ptr-logo-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 880px) {
      .ptr-tier-grid, .ptr-pillars, .ptr-logo-grid { grid-template-columns: 1fr; }
      .ptr-become { grid-template-columns: 1fr; padding: 36px 28px; gap: 20px; }
      .ptr-become h2 { font-size: 26px; }
      .ptr-become .mfy-btn { width: 100%; justify-content: center; }
      .ptr-tier { padding: 28px 24px; }
      .ptr-tier-name { font-size: 20px; }
    }


/* ════ Careers page styles (merged for full-site stylesheet) ════ */
/* Why join — 4-pillar hero block */
    .crs-pillars {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    .crs-pillar {
      padding: 32px 26px;
      background: linear-gradient(180deg, var(--surface) 0%, var(--surface-mist) 100%);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      position: relative;
      transition: transform .15s, border-color .15s, box-shadow .15s;
    }
    .crs-pillar::before {
      content: '';
      position: absolute; left: 26px; top: 0;
      width: 28px; height: 2px;
      background: var(--grad-brand);
    }
    .crs-pillar:hover {
      transform: translateY(-2px);
      border-color: color-mix(in oklab, var(--brand) 28%, var(--line));
      box-shadow: var(--shadow-sm);
    }
    .crs-pillar-n {
      font-family: 'Geist Mono', monospace;
      font-size: 11px;
      font-weight: 600;
      background: var(--grad-brand);
      -webkit-background-clip: text; background-clip: text;
      color: transparent; -webkit-text-fill-color: transparent;
      letter-spacing: 0.06em;
    }
    .crs-pillar h4 { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; margin: 14px 0 10px; line-height: 1.25; }
    .crs-pillar p { font-size: 13.5px; color: var(--ink-3); line-height: 1.55; }

    /* Open roles list */
    .crs-roles {
      display: flex; flex-direction: column;
      gap: 10px;
    }
    .crs-role {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      padding: 28px 32px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      transition: transform .15s, border-color .15s, box-shadow .2s;
      position: relative;
      overflow: hidden;
    }
    .crs-role::before {
      content: '';
      position: absolute; left: 0; top: 0; bottom: 0;
      width: 3px;
      background: var(--grad-brand);
      transform: translateX(-3px);
      transition: transform .2s;
    }
    .crs-role:hover {
      transform: translateY(-2px);
      border-color: color-mix(in oklab, var(--brand) 25%, var(--line));
      box-shadow: var(--shadow-md);
    }
    .crs-role:hover::before { transform: translateX(0); }

    .crs-role-h {
      display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
      margin-bottom: 6px;
    }
    .crs-role-team {
      display: inline-block;
      padding: 3px 10px;
      border-radius: 999px;
      background: color-mix(in oklab, var(--brand) 10%, var(--surface));
      border: 1px solid color-mix(in oklab, var(--brand) 22%, var(--line));
      color: var(--brand-700);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .crs-role-loc {
      font-size: 12.5px;
      color: var(--ink-3);
    }
    .crs-role-loc::before {
      content: '·';
      margin: 0 6px;
      color: var(--ink-4);
    }
    .crs-role-title {
      font-size: 22px !important;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: var(--ink);
      margin: 0;
    }
    .crs-role-desc {
      font-size: 14px;
      color: var(--ink-3);
      margin-top: 6px;
      line-height: 1.5;
      max-width: 640px;
    }
    .crs-role-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      border-radius: 999px;
      background: var(--surface);
      border: 1px solid var(--line-2);
      color: var(--ink-2);
      font-size: 13.5px;
      font-weight: 500;
      transition: background .15s, border-color .15s, color .15s;
      white-space: nowrap;
    }
    .crs-role:hover .crs-role-cta {
      background: var(--grad-brand);
      color: white;
      border-color: transparent;
    }

    /* Benefits grid */
    .crs-benefits {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .crs-benefit {
      padding: 24px 26px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      display: flex; gap: 16px; align-items: flex-start;
    }
    .crs-benefit-ico {
      width: 36px; height: 36px;
      border-radius: 10px;
      background: linear-gradient(135deg,
        color-mix(in oklab, var(--brand) 12%, var(--surface)) 0%,
        color-mix(in oklab, var(--accent-cyan) 14%, var(--surface)) 100%);
      border: 1px solid color-mix(in oklab, var(--brand) 20%, var(--line));
      color: var(--brand-700);
      display: inline-flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .crs-benefit h5 { font-size: 14.5px; font-weight: 600; margin-bottom: 4px; color: var(--ink); }
    .crs-benefit p { font-size: 13px; color: var(--ink-3); line-height: 1.5; margin: 0; }

    /* "No fit" callout */
    .crs-nofit {
      background:
        radial-gradient(500px 240px at 0% 100%, color-mix(in oklab, var(--brand) 10%, transparent), transparent 70%),
        radial-gradient(500px 240px at 100% 0%, color-mix(in oklab, var(--accent-cyan) 8%, transparent), transparent 70%),
        linear-gradient(180deg, var(--surface) 0%, var(--surface-mist) 100%);
      border: 1px solid var(--line);
      border-radius: var(--radius-2xl);
      padding: 48px 48px;
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 32px;
      align-items: center;
      box-shadow: var(--shadow-md);
    }
    .crs-nofit::before {
      content: '';
      position: absolute; left: 0; right: 0; top: 0;
      height: 2px;
      background: var(--grad-brand);
    }
    .crs-nofit h2 {
      font-size: 30px;
      font-weight: 600;
      letter-spacing: -0.025em;
      line-height: 1.15;
      color: var(--ink);
      margin-bottom: 10px;
    }
    .crs-nofit p {
      font-size: 14.5px;
      color: var(--ink-3);
      max-width: 540px;
      line-height: 1.55;
    }
/* Case study detail — full breakdown */
    .csd { padding: 56px 0; border-top: 1px solid var(--line); }
    .csd:first-of-type { border-top: none; }
    .csd-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: flex-start; }
    .csd-art {
      aspect-ratio: 4/3;
      border-radius: var(--radius-2xl);
      padding: 36px;
      display: flex; flex-direction: column; justify-content: space-between;
      box-shadow: var(--shadow-md);
      position: relative;
      overflow: hidden;
    }
    .csd-art-h { display: flex; justify-content: space-between; align-items: flex-start; }
    .csd-art-tag { padding: 6px 14px; background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border-radius: 999px; font-size: 12px; font-weight: 600; color: var(--ink-2); box-shadow: 0 2px 8px rgba(0, 30, 60, .12); }
    .csd-h2 { font-size: 32px; letter-spacing: -0.025em; font-weight: 600; margin-bottom: 18px; }
    .csd-art-stars { display: inline-flex; gap: 2px; color: rgba(0,0,0,.5); }
    .csd-art-name {
      font-size: 48px; font-weight: 700; letter-spacing: -0.025em;
      color: white;
      text-shadow: 0 2px 16px rgba(0, 30, 60, .4);
      font-style: italic;
    }
    .csd-art {
      aspect-ratio: 4/3;
      border-radius: var(--radius-2xl);
      padding: 36px;
      display: flex; flex-direction: column; justify-content: space-between;
      box-shadow: var(--shadow-md);
      position: relative;
      overflow: hidden;
    }
    .csd-art::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(600px 300px at 80% 100%, color-mix(in oklab, var(--brand-700) 30%, transparent), transparent 65%);
      pointer-events: none;
    }
    .csd-art > * { position: relative; z-index: 1; }
    .csd-art-stars { display: inline-flex; gap: 2px; color: rgba(255,255,255,.85); }
    .csd-quote { font-size: 22px; line-height: 1.4; color: var(--ink); font-style: italic; margin-bottom: 14px; text-wrap: pretty; }
    .csd-person { font-size: 13.5px; color: var(--ink-3); margin-bottom: 30px; }
    .csd-numgrid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
      margin-bottom: 28px;
    }
    .csd-num {
      padding: 18px 20px;
      background: var(--surface); border: 1px solid var(--line);
      border-radius: 12px;
    }
    .csd-num-v {
      font-size: 30px; font-weight: 700; letter-spacing: -0.02em;
      background: linear-gradient(120deg, var(--brand-700), var(--brand));
      -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent;
      font-variant-numeric: tabular-nums;
    }
    .csd-num-l { font-size: 12px; color: var(--ink-3); margin-top: 4px; line-height: 1.4; }
    .csd-section { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
    .csd-section h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 12px; }
    .csd-section ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
    .csd-section li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; font-size: 14px; color: var(--ink-2); line-height: 1.5; }
  .svc-hub-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 14px;
                margin-top: 48px;
            }

            .svc-hub-card {
                background: var(--surface);
                border: 1px solid var(--line);
                border-radius: var(--radius-lg);
                padding: 28px 26px;
                display: flex;
                flex-direction: column;
                transition: transform .2s, box-shadow .2s, border-color .2s;
                position: relative;
            }

            .svc-hub-card::before {
                content: '';
                position: absolute;
                left: 0;
                right: 0;
                top: 0;
                height: 2px;
                background: var(--grad-brand);
                border-radius: var(--radius-lg) var(--radius-lg) 0 0;
                opacity: 0;
                transition: opacity .2s;
            }

            .svc-hub-card:hover {
                transform: translateY(-3px);
                box-shadow: var(--shadow-lg);
                border-color: color-mix(in oklab, var(--brand) 30%, var(--line));
            }

            .svc-hub-card:hover::before {
                opacity: 1;
            }

            .svc-hub-icon {
                width: 44px;
                height: 44px;
                border-radius: 12px;
                background: linear-gradient(135deg, color-mix(in oklab, var(--brand) 14%, var(--surface)) 0%, color-mix(in oklab, var(--accent-cyan) 16%, var(--surface)) 100%);
                border: 1px solid color-mix(in oklab, var(--brand) 22%, var(--line));
                color: var(--brand-700);
                display: inline-flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 18px;
                box-shadow: 0 1px 0 rgba(255,255,255,.6) inset, 0 4px 12px -4px color-mix(in oklab, var(--brand) 20%, transparent);
            }

            .svc-hub-name {
                font-size: 19px;
                font-weight: 600;
                letter-spacing: -0.02em;
            }

            .svc-hub-tag {
                display: inline-block;
                padding: 3px 9px;
                background: color-mix(in oklab, var(--brand) 8%, var(--surface));
                border-radius: 999px;
                font-size: 10.5px;
                font-weight: 600;
                letter-spacing: 0.06em;
                color: var(--brand-700);
                margin-top: 10px;
            }

            .svc-hub-desc {
                font-size: 13.5px;
                color: var(--ink-3);
                margin-top: 14px;
                line-height: 1.55;
                flex: 1;
            }

            .svc-hub-link {
                color: var(--brand-700);
                font-weight: 500;
                font-size: 13px;
                margin-top: 16px;
            }
            .about-story {
      max-width: 720px;
      margin: 0 auto;
    }
    .about-story h3 {
      font-size: 22px; font-weight: 600; letter-spacing: -0.02em;
      color: var(--ink); margin: 36px 0 12px;
    }
    .about-story h3:first-child { margin-top: 0; }
    .about-story p {
      font-size: 16px;
      line-height: 1.65;
      color: var(--ink-2);
      margin-bottom: 16px;
    }
    .about-story p strong { color: var(--ink); font-weight: 600; }

    .principles {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 32px;
    }
    .principle {
      padding: 28px 26px;
      background: linear-gradient(180deg, var(--surface) 0%, var(--surface-mist) 100%);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      position: relative;
      transition: border-color .15s, box-shadow .15s;
    }
    .principle::before {
      content: '';
      position: absolute; left: 26px; top: 0;
      width: 32px; height: 2px;
      background: var(--grad-brand);
    }
    .principle:hover {
      border-color: color-mix(in oklab, var(--brand) 30%, var(--line));
      box-shadow: var(--shadow-sm);
    }
    .principle-n {
      font-family: 'Geist Mono', monospace;
      font-size: 12px;
      font-weight: 600;
      background: var(--grad-brand);
      -webkit-background-clip: text; background-clip: text;
      color: transparent; -webkit-text-fill-color: transparent;
      letter-spacing: 0.06em;
    }
    .principle h4 {
      font-size: 19px;
      font-weight: 600;
      letter-spacing: -0.02em;
      margin: 12px 0 10px;
    }
    .principle p {
      font-size: 13.5px;
      color: var(--ink-3);
      line-height: 1.55;
    } 

    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 40px;
    }
    .team-card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 24px 22px;
      text-align: center;
    }
    .team-avatar {
      width: 68px; height: 68px;
      border-radius: 50%;
      margin: 0 auto 14px;
      background: linear-gradient(135deg, var(--brand-300), var(--brand-700));
      color: white;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 24px; font-weight: 700;
    }
    .team-name { font-size: 15px; font-weight: 600; color: var(--ink); }
    .team-role { font-size: 12.5px; color: var(--ink-3); margin-top: 4px; }
    .team-cred { font-size: 11.5px; color: var(--brand-700); margin-top: 8px; font-weight: 500; }
/* Why join — 4-pillar hero block */
    .crs-pillars {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    .crs-pillar {
      padding: 32px 26px;
      background: linear-gradient(180deg, var(--surface) 0%, var(--surface-mist) 100%);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      position: relative;
      transition: transform .15s, border-color .15s, box-shadow .15s;
    }
    .crs-pillar::before {
      content: '';
      position: absolute; left: 26px; top: 0;
      width: 28px; height: 2px;
      background: var(--grad-brand);
    }
    .crs-pillar:hover {
      transform: translateY(-2px);
      border-color: color-mix(in oklab, var(--brand) 28%, var(--line));
      box-shadow: var(--shadow-sm);
    }
    .crs-pillar-n {
      font-family: 'Geist Mono', monospace;
      font-size: 11px;
      font-weight: 600;
      background: var(--grad-brand);
      -webkit-background-clip: text; background-clip: text;
      color: transparent; -webkit-text-fill-color: transparent;
      letter-spacing: 0.06em;
    }
    .crs-pillar h4 { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; margin: 14px 0 10px; line-height: 1.25; }
    .crs-pillar p { font-size: 13.5px; color: var(--ink-3); line-height: 1.55; }

    /* Open roles list */
    .crs-roles {
      display: flex; flex-direction: column;
      gap: 10px;
    }
    .crs-role {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      padding: 28px 32px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      transition: transform .15s, border-color .15s, box-shadow .2s;
      position: relative;
      overflow: hidden;
    }
    .crs-role::before {
      content: '';
      position: absolute; left: 0; top: 0; bottom: 0;
      width: 3px;
      background: var(--grad-brand);
      transform: translateX(-3px);
      transition: transform .2s;
    }
    .crs-role:hover {
      transform: translateY(-2px);
      border-color: color-mix(in oklab, var(--brand) 25%, var(--line));
      box-shadow: var(--shadow-md);
    }
    .crs-role:hover::before { transform: translateX(0); }

    .crs-role-h {
      display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
      margin-bottom: 6px;
    }
    .crs-role-team {
      display: inline-block;
      padding: 3px 10px;
      border-radius: 999px;
      background: color-mix(in oklab, var(--brand) 10%, var(--surface));
      border: 1px solid color-mix(in oklab, var(--brand) 22%, var(--line));
      color: var(--brand-700);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .crs-role-loc {
      font-size: 12.5px;
      color: var(--ink-3);
    }
    .crs-role-loc::before {
      content: '·';
      margin: 0 6px;
      color: var(--ink-4);
    }
    .crs-role-title {
      font-size: 22px;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: var(--ink);
      margin: 0;
    }
    .crs-role-desc {
      font-size: 14px;
      color: var(--ink-3);
      margin-top: 6px;
      line-height: 1.5;
      max-width: 640px;
    }
    .crs-role-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      border-radius: 999px;
      background: var(--surface);
      border: 1px solid var(--line-2);
      color: var(--ink-2);
      font-size: 13.5px;
      font-weight: 500;
      transition: background .15s, border-color .15s, color .15s;
      white-space: nowrap;
    }
    .crs-role:hover .crs-role-cta {
      background: var(--grad-brand);
      color: white;
      border-color: transparent;
    }

    /* Benefits grid */
    .crs-benefits {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .crs-benefit {
      padding: 24px 26px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      display: flex; gap: 16px; align-items: flex-start;
    }
    .crs-benefit-ico {
      width: 36px; height: 36px;
      border-radius: 10px;
      background: linear-gradient(135deg,
        color-mix(in oklab, var(--brand) 12%, var(--surface)) 0%,
        color-mix(in oklab, var(--accent-cyan) 14%, var(--surface)) 100%);
      border: 1px solid color-mix(in oklab, var(--brand) 20%, var(--line));
      color: var(--brand-700);
      display: inline-flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .crs-benefit h5 { font-size: 14.5px; font-weight: 600; margin-bottom: 4px; color: var(--ink); }
    .crs-benefit p { font-size: 13px; color: var(--ink-3); line-height: 1.5; margin: 0; }

    /* "No fit" callout */
    .crs-nofit {
      background:
        radial-gradient(500px 240px at 0% 100%, color-mix(in oklab, var(--brand) 10%, transparent), transparent 70%),
        radial-gradient(500px 240px at 100% 0%, color-mix(in oklab, var(--accent-cyan) 8%, transparent), transparent 70%),
        linear-gradient(180deg, var(--surface) 0%, var(--surface-mist) 100%);
      border: 1px solid var(--line);
      border-radius: var(--radius-2xl);
      padding: 48px 48px;
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 32px;
      align-items: center;
      box-shadow: var(--shadow-md);
    }
    .crs-nofit::before {
      content: '';
      position: absolute; left: 0; right: 0; top: 0;
      height: 2px;
      background: var(--grad-brand);
    }
    .crs-nofit h2 {
      font-size: 30px;
      font-weight: 600;
      letter-spacing: -0.025em;
      line-height: 1.15;
      color: var(--ink);
      margin-bottom: 10px;
    }
    .crs-nofit p {
      font-size: 14.5px;
      color: var(--ink-3);
      max-width: 540px;
      line-height: 1.55;
    }

    @media (max-width: 1024px) {
      .crs-pillars { grid-template-columns: 1fr 1fr; }
      .crs-benefits { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 880px) {
      .crs-pillars, .crs-benefits { grid-template-columns: 1fr; }
      .crs-role {
        grid-template-columns: 1fr;
        padding: 22px 24px;
      }
      .crs-role-cta {
        align-self: flex-start;
        margin-top: 6px;
      }
      .crs-role-title { font-size: 18px; }
      .crs-nofit { grid-template-columns: 1fr; padding: 32px 24px; gap: 20px; }
      .crs-nofit h2 { font-size: 24px; }
      .crs-nofit .mfy-btn { width: 100%; justify-content: center; }
    }
    @media (max-width: 1024px) {
      .crs-pillars { grid-template-columns: 1fr 1fr; }
      .crs-benefits { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 880px) {
      .crs-pillars, .crs-benefits { grid-template-columns: 1fr; }
      .crs-role {
        grid-template-columns: 1fr;
        padding: 22px 24px;
      }
      .crs-role-cta {
        align-self: flex-start;
        margin-top: 6px;
      }
      .crs-role-title { font-size: 18px; }
      .crs-nofit { grid-template-columns: 1fr; padding: 32px 24px; gap: 20px; }
      .crs-nofit h2 { font-size: 24px; }
      .crs-nofit .mfy-btn { width: 100%; justify-content: center; }
    }
/* ════ Resources page ════ */
.res-ebook-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.res-ebook{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-xl);overflow:hidden;box-shadow:var(--shadow-sm);transition:transform .2s,box-shadow .2s,border-color .2s;}
.res-ebook:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg);border-color:var(--line-brand);}
.res-ebook-cover{aspect-ratio:16/10;padding:18px;display:flex;justify-content:space-between;align-items:flex-start;position:relative;}
.res-ebook-num{font-size:13px;font-weight:600;color:rgba(255,255,255,.9);}
.res-ebook-kind{font-size:10px;font-weight:700;letter-spacing:0.1em;color:rgba(255,255,255,.85);background:rgba(0,0,0,.18);padding:3px 8px;border-radius:5px;}
.res-ebook-body{padding:22px 22px 24px;}
.res-ebook-body h3{font-size:18px;font-weight:600;letter-spacing:-0.02em;line-height:1.25;margin-bottom:8px;}
.res-ebook-body p{font-size:13.5px;color:var(--ink-3);line-height:1.5;}
.res-ebook-meta{margin:14px 0;}
.res-ebook-pages{font-family:'Geist Mono',monospace;font-size:11px;color:var(--ink-4);}
.res-ebook-dl{width:100%;justify-content:center;}
.res-post-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.res-post{display:flex;flex-direction:column;background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-lg);padding:26px 24px;transition:transform .2s,box-shadow .2s,border-color .2s;}
.res-post:hover{transform:translateY(-2px);box-shadow:var(--shadow-md);border-color:var(--line-brand);}
.res-post-tag{font-size:10.5px;font-weight:700;letter-spacing:0.08em;color:var(--brand-700);margin-bottom:12px;}
.res-post h3{font-size:18px;font-weight:600;letter-spacing:-0.02em;line-height:1.3;margin-bottom:10px;}
.res-post p{font-size:13.5px;color:var(--ink-3);line-height:1.55;flex:1;}
.res-post-foot{display:flex;justify-content:space-between;align-items:center;margin-top:18px;padding-top:16px;border-top:1px solid var(--line);}
.res-post-read{font-size:12px;color:var(--ink-4);}
.res-post-arrow{display:inline-flex;width:30px;height:30px;border-radius:50%;background:color-mix(in oklab, var(--brand) 8%, var(--surface));border:1px solid color-mix(in oklab, var(--brand) 18%, var(--line));color:var(--brand-700);align-items:center;justify-content:center;transition:background .15s,color .15s;}
.res-post:hover .res-post-arrow{background:var(--grad-brand);color:#fff;border-color:transparent;}
.res-tool-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;}
.res-tool{display:flex;flex-direction:column;background:linear-gradient(180deg,var(--surface) 0%,var(--surface-mist) 100%);border:1px solid var(--line);border-radius:var(--radius-lg);padding:28px 26px;position:relative;transition:transform .2s,box-shadow .2s,border-color .2s;}
.res-tool::before{content:'';position:absolute;left:26px;top:0;width:32px;height:2px;background:var(--grad-brand);}
.res-tool:hover{transform:translateY(-2px);box-shadow:var(--shadow-md);border-color:var(--line-brand);}
.res-tool-ico{width:44px;height:44px;border-radius:12px;background:linear-gradient(135deg, color-mix(in oklab, var(--brand) 14%, var(--surface)) 0%, color-mix(in oklab, var(--accent-cyan) 16%, var(--surface)) 100%);border:1px solid color-mix(in oklab, var(--brand) 22%, var(--line));color:var(--brand-700);display:inline-flex;align-items:center;justify-content:center;margin-bottom:16px;}
.res-tool h3{font-size:18px;font-weight:600;letter-spacing:-0.02em;margin-bottom:8px;}
.res-tool p{font-size:13.5px;color:var(--ink-3);line-height:1.55;flex:1;}
.res-tool-link{margin-top:16px;font-size:13px;font-weight:500;color:var(--brand-700);}
.res-news{background:var(--grad-dark);border-radius:var(--radius-2xl);padding:56px 48px;display:grid;grid-template-columns:1.1fr 1fr;gap:40px;align-items:center;position:relative;overflow:hidden;box-shadow:var(--shadow-lg);}
.res-news::before{content:'';position:absolute;inset:0;background:radial-gradient(600px 300px at 100% 0%, color-mix(in oklab, var(--brand) 30%, transparent), transparent 60%),radial-gradient(500px 240px at 0% 100%, color-mix(in oklab, var(--accent-cyan) 18%, transparent), transparent 65%);pointer-events:none;}
.res-news::after{content:'';position:absolute;left:0;right:0;top:0;height:2px;background:linear-gradient(90deg,transparent,var(--accent-cyan),var(--brand),transparent);}
.res-news>*{position:relative;z-index:1;}
.res-news-copy h2{font-size:34px;font-weight:600;letter-spacing:-0.025em;line-height:1.1;color:#fff;margin-bottom:12px;}
.res-news-copy h2 .mfy-emph{background:linear-gradient(120deg,var(--accent-cyan),#fff);-webkit-background-clip:text;background-clip:text;color:transparent;-webkit-text-fill-color:transparent;}
.res-news-copy p{font-size:14.5px;color:rgba(255,255,255,.7);line-height:1.55;max-width:440px;}
.res-news-form{display:flex;gap:6px;background:rgba(255,255,255,.08);backdrop-filter:blur(8px);padding:6px;border-radius:999px;border:1px solid rgba(255,255,255,.12);}
.res-news-form input{flex:1;background:transparent;border:0;padding:11px 18px;font:inherit;font-size:14px;color:#fff;outline:none;}
.res-news-form input::placeholder{color:rgba(255,255,255,.5);}
@media(max-width:1024px){.res-ebook-grid,.res-post-grid,.res-tool-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:880px){.res-ebook-grid,.res-post-grid,.res-tool-grid{grid-template-columns:1fr;}.res-news{grid-template-columns:1fr;padding:32px 24px;gap:22px;}.res-news-copy h2{font-size:26px;}.res-news-form{flex-direction:column;border-radius:14px;}.res-news-form input{width:100%;}.res-news-form button{width:100%;}}

@import url('https://fonts.googleapis.com/css2?family=Geist:ital,wght@0,100..900;1,100..900&display=swap');
body *{
	  font-family: "Geist", sans-serif !important;

}
:root {
    --brand: #0077B5;
	    --line: rgba(15, 20, 25, 0.08);
}
/* Add your custom styles here */
.gradiantTopbar *{
	 background: linear-gradient(90deg, #4fb3d9, #0077b5, #0077b5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent !important;
}
a{
	transition:0.3s ease-in-out all;
}
.titleInner{
background: linear-gradient(
  120deg,
  #005B8A 0%,
  #0077B5 50%,
  #4FB3D9 100%
);


    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
    color: transparent;

}
.gradientBox {
    background-image: radial-gradient(900px 420px at 15% 10%, 
color-mix(in oklab, #0077b5 14%, transparent), transparent 60%), radial-gradient(800px 380px at 85% 30%, 
color-mix(in oklab, #4fb3d9 16%, transparent), transparent 65%), radial-gradient(700px 360px at 50% 95%, color-mix(in oklab, color-mix(in oklab, #0077b5 76%, #000000) 8%, transparent), transparent 70%);
	&:after{
		content:'';
		    background: linear-gradient(90deg, transparent, color-mix(rgb(0, 119, 181) 30%, transparent), transparent);
		    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
	}
} 
.bannerVideoClass{
    position: absolute;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    object-fit: cover;
}
.siteHeader{
  position:absolute;
  left:0;
  top:0; 
  width: 100%;
  .mfy-anno{
    position: relative;
    z-index: 1;
  }
}
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}

.marquee-wrapper .auth-partners-row {
  display: inline-flex;
  align-items: center;
  animation: marquee-scroll 20s linear infinite;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* pause on hover, optional */
.marquee-wrapper:hover .auth-partners-row {
  animation-play-state: paused;
}