/* ===== colors_and_type.css ===== */
/* ============================================================
   Digital Marketing First â€” Design Tokens
   Import this file in every prototype:
     <link rel="stylesheet" href="colors_and_type.css">
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Instrument+Serif:ital,wght@0,400;1,400&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  /* -------- INK (workhorse neutrals + headings on light) -------- */
  --ink-950: #060f29;
  --ink-900: #0A1B3D;
  --ink-800: #112450;
  --ink-700: #1B3470;
  --ink-600: #2A4894;
  --ink-500: #3F5DB5;
  --ink-400: #6A82C8;
  --ink-300: #9CAEDB;
  --ink-200: #C7D2EC;
  --ink-100: #E4EAF7;
  --ink-050: #F0F3FA;

  /* -------- TIDE (electric blue accent) -------- */
  --tide-900: #0B3FCC;
  --tide-700: #1E5BFF;
  --tide-500: #3B82FF;
  --tide-400: #5C9AFF;
  --tide-300: #7CB7FF;
  --tide-200: #B6D6FF;
  --tide-100: #E4F0FF;

  /* -------- SPARK (warm amber, used sparingly) -------- */
  --spark-700: #C7821E;
  --spark-500: #FFB547;
  --spark-400: #FFCB78;
  --spark-200: #FFE3B0;
  --spark-100: #FFF3DA;

  /* -------- Surfaces -------- */
  --paper: #F6F8FC;
  --white: #FFFFFF;
  --black: #000000;

  /* -------- Status -------- */
  --mint-500: #4ADE80;
  --success: #16A34A;
  --warning: #F59E0B;
  --danger:  #E11D48;

  /* -------- Semantic foreground/background -------- */
  --fg-1: var(--ink-900);          /* headings on light */
  --fg-2: var(--ink-700);          /* body on light */
  --fg-3: #50608F;                  /* muted on light */
  --fg-on-dark-1: #FFFFFF;
  --fg-on-dark-2: rgba(255,255,255,.78);
  --fg-on-dark-3: rgba(255,255,255,.56);

  --bg-page: var(--paper);
  --bg-surface: var(--white);
  --bg-dark: var(--ink-900);
  --bg-darker: var(--ink-950);

  --border-light: rgba(10,27,61,.08);
  --border-dark: rgba(255,255,255,.10);
  --border-strong-light: rgba(10,27,61,.16);

  /* -------- Spacing (4pt) -------- */
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* -------- Radii -------- */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  /* -------- Shadows -------- */
  --shadow-sm: 0 2px 6px rgba(10,27,61,.06), 0 1px 2px rgba(10,27,61,.04);
  --shadow-md: 0 8px 24px rgba(10,27,61,.10), 0 2px 6px rgba(10,27,61,.06);
  --shadow-lg: 0 24px 60px rgba(10,27,61,.18), 0 6px 16px rgba(10,27,61,.08);
  --shadow-glow: 0 0 60px rgba(59,130,255,.35);
  --shadow-glow-spark: 0 0 80px rgba(255,181,71,.30);

  /* -------- Type families -------- */
  --font-display: 'Bricolage Grotesque', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-sans:    'Bricolage Grotesque', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif:   'Instrument Serif', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* -------- Type ramps (clamped, fluid) -------- */
  --fs-eyebrow: 13px;
  --fs-body-sm: 14px;
  --fs-body: 16px;
  --fs-body-lg: 18px;
  --fs-lede: clamp(18px, 1.2vw + 14px, 22px);
  --fs-h6: 18px;
  --fs-h5: 20px;
  --fs-h4: clamp(22px, 1.4vw + 16px, 28px);
  --fs-h3: clamp(28px, 2vw + 18px, 40px);
  --fs-h2: clamp(36px, 3vw + 20px, 60px);
  --fs-h1: clamp(48px, 5vw + 24px, 96px);
  --fs-display: clamp(64px, 8vw + 24px, 160px);

  /* -------- Tracking -------- */
  --tracking-tight: -0.025em;
  --tracking-snug: -0.012em;
  --tracking-normal: 0;
  --tracking-wide: 0.06em;
  --tracking-wider: 0.12em;

  /* -------- Motion -------- */
  --ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-drift:    cubic-bezier(0.45, 0, 0.55, 1);
  --dur-micro: 180ms;
  --dur-state: 320ms;
  --dur-entry: 600ms;

  /* -------- Layout -------- */
  --container: 1280px;
  --gutter: 24px;
  --header-h: 72px;
}

/* ============================================================
   Base + semantic element styles
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-page);
  color: var(--fg-2);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--fg-1);
  font-weight: 600;
  letter-spacing: var(--tracking-tight);
  line-height: 1.04;
  text-wrap: balance;
  margin: 0;
}

h1 { font-size: var(--fs-h1); font-weight: 600; }
h2 { font-size: var(--fs-h2); font-weight: 600; line-height: 1.06; }
h3 { font-size: var(--fs-h3); font-weight: 600; line-height: 1.12; letter-spacing: var(--tracking-snug); }
h4 { font-size: var(--fs-h4); font-weight: 600; line-height: 1.2;  letter-spacing: var(--tracking-snug); }
h5 { font-size: var(--fs-h5); font-weight: 600; line-height: 1.25; letter-spacing: var(--tracking-snug); }
h6 { font-size: var(--fs-h6); font-weight: 600; line-height: 1.3;  letter-spacing: var(--tracking-snug); }

p { margin: 0 0 1em; text-wrap: pretty; }

a {
  color: var(--tide-700);
  text-decoration: none;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1.5px;
  transition: background-size var(--dur-state) var(--ease-standard), color var(--dur-state) var(--ease-standard);
}
a:hover { background-size: 100% 1.5px; }

code, pre, kbd, samp {
  font-family: var(--font-mono);
  font-size: 0.9em;
}

::selection { background: var(--tide-300); color: var(--ink-900); }

/* ============================================================
   Type utility classes (use these in HTML/JSX)
   ============================================================ */

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  color: var(--fg-3);
}
.eyebrow--on-dark { color: rgba(255,255,255,.72); }
.eyebrow--tide   { color: var(--tide-500); }
.eyebrow--spark  { color: var(--spark-500); }

.display {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.lede {
  font-size: var(--fs-lede);
  line-height: 1.45;
  color: var(--fg-2);
}

.mono { font-family: var(--font-mono); }

/* Headline gradient â€” used for the "built on first principles" treatment */
.text-tide-gradient {
  background: linear-gradient(180deg, var(--tide-300) 0%, var(--tide-500) 60%, var(--tide-700) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  --btn-bg: var(--ink-900);
  --btn-fg: #fff;
  --btn-bd: transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bd);
  cursor: pointer;
  transition: background var(--dur-state) var(--ease-standard),
              color var(--dur-state) var(--ease-standard),
              transform var(--dur-micro) var(--ease-standard),
              box-shadow var(--dur-state) var(--ease-standard);
  text-decoration: none;
  background-image: none; /* override link underline */
}
.btn:hover  { background-image: none; }
.btn:active { transform: scale(0.985); }

.btn--tide    { --btn-bg: var(--tide-500); --btn-fg: #fff; }
.btn--tide:hover { background: var(--tide-700); }
.btn--ink     { --btn-bg: var(--ink-900); --btn-fg: #fff; }
.btn--ink:hover { background: var(--ink-800); }
.btn--ghost   { --btn-bg: transparent; --btn-fg: var(--ink-900); --btn-bd: var(--border-strong-light); }
.btn--ghost:hover { background: var(--ink-050); }
.btn--ghost-on-dark { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.24); }
.btn--ghost-on-dark:hover { background: rgba(255,255,255,.08); }
.btn--spark   { --btn-bg: var(--spark-500); --btn-fg: var(--ink-900); }
.btn--spark:hover { background: var(--spark-400); }

.btn .btn__arrow { transition: transform var(--dur-state) var(--ease-standard); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--sm { padding: 10px 16px; font-size: 14px; }
.btn--lg { padding: 18px 28px; font-size: 17px; }

/* ============================================================
   Pills, tags, badges
   ============================================================ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  background: var(--ink-050);
  color: var(--ink-800);
  border: 1px solid var(--border-light);
}
.pill--tide  { background: var(--tide-100); color: var(--tide-900); border-color: rgba(30,91,255,.18); }
.pill--spark { background: var(--spark-100); color: var(--spark-700); border-color: rgba(199,130,30,.20); }
.pill--dark  { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.14); }
.pill--mint  { background: rgba(74,222,128,.14); color: #16a34a; border-color: rgba(22,163,74,.24); }
.pill--mint .pill__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mint-500); box-shadow: 0 0 0 3px rgba(74,222,128,.22); }

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-6);
  transition: transform var(--dur-state) var(--ease-standard),
              box-shadow var(--dur-state) var(--ease-standard);
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card--dark {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--fg-on-dark-2);
  box-shadow: none;
}
.card--dark:hover { background: rgba(255,255,255,.06); transform: translateY(-2px); }

/* ============================================================
   Container / section
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding: var(--space-9) 0; }
.section--lg { padding: var(--space-10) 0; }
.section--dark { background: var(--ink-900); color: var(--fg-on-dark-1); }
.section--paper { background: var(--paper); }
.section--ink-darkest { background: var(--ink-950); color: var(--fg-on-dark-1); }

/* ============================================================
   Ambient moving blobs
   Drop two .blob elements inside a position:relative parent.
   ============================================================ */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.blob--tide  { background: radial-gradient(circle, var(--tide-500) 0%, transparent 70%); }
.blob--spark { background: radial-gradient(circle, var(--spark-500) 0%, transparent 70%); }
.blob--ink   { background: radial-gradient(circle, var(--tide-700) 0%, transparent 70%); }

@keyframes drift-a {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40px, -30px) scale(1.15); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes drift-b {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-50px, 40px) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}

.blob--drift-a { animation: drift-a 18s var(--ease-drift) infinite; }
.blob--drift-b { animation: drift-b 24s var(--ease-drift) infinite; }

/* ============================================================
   Hairlines + dividers
   ============================================================ */
.hairline { height: 1px; background: var(--border-light); width: 100%; }
.hairline--dark { background: var(--border-dark); }
.hairline--tide {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--tide-500), transparent);
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .blob { animation: none !important; }
}


/* ===== kit.css ===== */
/* Website kit â€” local styles (uses tokens from colors_and_type.css) */

.kit-shell { min-height: 100vh; background: var(--paper); }

/* ============ HEADER ============ */
.dmf-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
  transition: background 320ms var(--ease-standard), backdrop-filter 320ms var(--ease-standard), border-color 320ms var(--ease-standard);
  border-bottom: 1px solid transparent;
}
.dmf-header--transparent { background: transparent; }
.dmf-header--solid {
  background: rgba(10, 27, 61, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255,255,255,.08);
}
.dmf-header .inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.dmf-header .logo {
  display: flex; align-items: center; gap: 10px;
  color: #fff;
  text-decoration: none;
  background-image: none;
}
.dmf-header .logo .mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
}
.dmf-header .logo .mark svg { width: 16px; height: 16px; }
.dmf-header .logo .word { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.025em; }
.dmf-header .logo .word .first { font-weight: 500; opacity: .9; }

.dmf-header nav { display: flex; align-items: center; gap: 28px; margin-left: 12px; }
.dmf-header nav a {
  color: rgba(255,255,255,.84);
  font-size: 15px;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 4px;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 calc(100% - 2px);
  background-size: 0 1.5px;
  transition: background-size 240ms var(--ease-standard), color 240ms var(--ease-standard);
}
.dmf-header nav a:hover { color: #fff; background-size: 100% 1.5px; }
.dmf-header nav .nav-current { color: #fff; background-size: 100% 1.5px; }

.dmf-header .right { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.dmf-header .right a.login {
  color: rgba(255,255,255,.84);
  font-size: 15px; font-weight: 500;
  background-image: none;
}
.dmf-header .right a.login:hover { color: #fff; }

/* Mega-menu (Services) */
.megamenu {
  position: absolute;
  top: 72px;
  left: 0; right: 0;
  background: rgba(6, 15, 41, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 32px 0 44px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 220ms var(--ease-standard), transform 220ms var(--ease-standard);
}
.megamenu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.megamenu .inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px 28px; }
.megamenu h6 {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--tide-300);
  margin: 0 0 10px;
}
.megamenu .hub {
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.megamenu .hub a.hub-link {
  color: #fff; font-size: 15.5px; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
  background-image: none;
}
.megamenu .hub a.hub-link svg { width: 16px; height: 16px; color: var(--tide-300); transition: transform .24s var(--ease-standard); }
.megamenu .hub a.hub-link:hover svg { transform: translateX(3px); }
.megamenu .sub {
  list-style: none; padding: 0; margin: 8px 0 0;
}
.megamenu .sub li a {
  display: block;
  padding: 4px 0;
  color: rgba(255,255,255,.66);
  font-size: 13.5px;
  background-image: none;
}
.megamenu .sub li a:hover { color: #fff; }

/* ============ HERO ============ */
.hero {
  position: relative;
  width: 100%;
  min-height: 92vh;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--space-9);
  margin-top: -72px;
  padding-top: 72px;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
  /* UK skyline splash â€” London aerial at dusk, used as backdrop in/under the sticky header. */
  background-image: url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?auto=format&fit=crop&w=2400&q=80');
  background-size: cover;
  background-position: center;
}
.hero__bg video,
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero__overlay {
  position: absolute; inset: 0;
  /* Stronger darkening so white H1 + amber italic both read cleanly */
  background:
    linear-gradient(180deg, rgba(6,15,41,.75) 0%, rgba(6,15,41,.92) 90%);
  z-index: 1;
}
.hero__blobs { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.hero__arc {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: .5;
  animation: arc-pulse 7s ease-in-out infinite;
}
@keyframes arc-pulse {
  0%,100% { opacity: .35; }
  50%     { opacity: .65; }
}
.hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 24px;
}
.hero__eyebrow::before { content:""; width: 28px; height: 1.5px; background: var(--tide-300); }
.hero__h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 5.6vw + 12px, 108px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 0;
  max-width: 1100px;
}
.hero__h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  /* Warm amber on dark hero â€” unmissable against busy photo overlay */
  color: var(--spark-400);
  letter-spacing: -0.02em;
  display: inline-block;
  line-height: 1.1;
  /* Soft glow so it reads on top of bright pixels in the photo */
  text-shadow:
    0 2px 24px rgba(255,181,71,.35),
    0 1px 2px rgba(6,15,41,.6);
}
.hero__lede {
  margin-top: 28px;
  font-size: clamp(18px, 0.7vw + 16px, 22px);
  line-height: 1.45;
  color: rgba(255,255,255,.86);
  max-width: 620px;
}
.hero__ctas { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 28px; right: var(--gutter);
  z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.7);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: scroll-bob 2.2s ease-in-out infinite;
}
@keyframes scroll-bob {
  0%,100% { transform: translateY(0); opacity: .7; }
  50%     { transform: translateY(4px); opacity: 1; }
}

/* ============ SERVICE GRID ============ */
.service-grid-section { background: var(--paper); padding: var(--space-9) 0; }
.service-grid-section .top { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: var(--space-7); }
.service-grid-section .top h2 { font-size: clamp(34px, 2.6vw + 16px, 54px); max-width: 720px; }
.service-grid-section .top .map-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-900); font-size: 15px; font-weight: 500;
  white-space: nowrap;
}
.service-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.service-grid--6 {
  grid-template-columns: repeat(3, 1fr);
}
.service-tile-tilt {
  display: block;
  border-radius: 22px;
}
.service-tile {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 22px;
  padding: 28px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  text-decoration: none; background-image: none;
  color: var(--ink-900);
  position: relative;
  overflow: hidden;
  transition: transform 320ms var(--ease-standard), box-shadow 320ms var(--ease-standard), border-color 320ms var(--ease-standard);
}
.service-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30,91,255,.18);
}
.service-tile .icon {
  width: 32px; height: 32px;
  color: var(--tide-700);
  margin-bottom: 18px;
  stroke-width: 1.75;
}
.service-tile h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.service-tile p {
  font-size: 14.5px;
  color: var(--fg-3);
  line-height: 1.55;
  margin: 0 0 20px;
  flex-grow: 1;
}
.service-tile .tile-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}
.service-tile .tile-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--tide-700);
  transition: gap .24s var(--ease-standard);
}
.service-tile:hover .tile-cta { gap: 10px; }
.service-tile .arrow {
  position: absolute; top: 22px; right: 22px;
  color: var(--fg-3);
  transition: transform 320ms var(--ease-standard), color 320ms var(--ease-standard);
}
.service-tile:hover .arrow { color: var(--tide-700); transform: translate(4px, -2px); }
.service-tile--spark { background: linear-gradient(180deg, #fff 0%, #FFF7E6 100%); }
.service-tile--spark .icon { color: var(--spark-700); }

/* ============ PROCESS SECTION ============ */
.process {
  position: relative;
  background: var(--ink-900);
  color: #fff;
  padding: var(--space-10) 0;
  overflow: hidden;
}
.process .inner { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.process h2 { color: #fff; max-width: 760px; font-size: clamp(34px, 2.6vw + 16px, 54px); }
.process .grid { margin-top: var(--space-7); display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process .step {
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 24px;
  transition: background 320ms var(--ease-standard), transform 320ms var(--ease-standard);
}
.process .step:hover { background: rgba(255,255,255,.07); transform: translateY(-2px); }
.process .step .num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,.4);
}
.process .step .icon { width: 26px; height: 26px; color: var(--tide-300); margin: 14px 0 12px; }
.process .step:nth-child(2) .icon { color: var(--spark-500); }
.process .step:nth-child(4) .icon { color: var(--tide-300); }
.process .step h4 { color: #fff; font-size: 19px; margin-bottom: 8px; }
.process .step p { color: rgba(255,255,255,.66); font-size: 14px; line-height: 1.55; margin: 0; }

/* ============ STUDIOS / CITY MARQUEE ============ */
.studios-strip {
  background: var(--paper);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.studios-strip .label {
  position: absolute; left: 24px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-3);
  background: var(--paper);
  padding-right: 18px;
  z-index: 2;
}
.studios-strip .track {
  display: flex; gap: 56px;
  white-space: nowrap;
  animation: studios-marquee 28s linear infinite;
  padding-left: 220px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink-900);
}
.studios-strip .track .dot { color: var(--tide-500); }
@keyframes studios-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ STAT STRIP ============ */
.stat-strip {
  max-width: var(--container);
  margin: -56px auto 0;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 4;
}
.stat-strip .inner {
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-strip .stat { padding: 20px 28px; border-right: 1px solid var(--border-light); }
.stat-strip .stat:last-child { border-right: 0; }
.stat-strip .num {
  font-family: var(--font-display);
  font-size: clamp(38px, 2.4vw + 18px, 56px);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--ink-900);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.stat-strip .unit { font-size: 0.55em; color: var(--tide-700); }
.stat-strip .label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-3);
  margin-top: 10px;
}

/* ============ CASE STUDY ============ */
.case-study { background: var(--paper); padding: var(--space-10) 0; }
.case-study .inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.case-study .copy h2 { font-size: clamp(36px, 2.4vw + 18px, 56px); margin-bottom: 18px; }
.case-study .copy .lede { font-size: 18px; color: var(--fg-2); margin-bottom: 24px; }
.case-study .metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.case-study .metric { padding: 16px 18px; border: 1px solid var(--border-light); border-radius: 14px; background: #fff; }
.case-study .metric .n { font-family: var(--font-display); font-weight: 700; font-size: 32px; letter-spacing: -0.03em; color: var(--ink-900); line-height: 1; }
.case-study .metric .l { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-3); margin-top: 8px; }
.case-study .visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.case-study .visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.case-study .visual .badge {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background: rgba(6, 15, 41, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  color: #fff;
}
.case-study .visual .badge .who { font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.case-study .visual .badge .what { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.7); }

/* ============ TESTIMONIAL ============ */
.testimonial { background: var(--white); padding: var(--space-10) 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.testimonial .inner { max-width: 1040px; margin: 0 auto; padding: 0 var(--gutter); text-align: center; }
.testimonial blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 2vw + 16px, 44px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--ink-900);
}
.testimonial blockquote em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--tide-700);
}
.testimonial .attribution {
  margin-top: 32px;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 8px 16px 8px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-light);
}
.testimonial .attribution .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--ink-100);
  background-size: cover; background-position: center;
}
.testimonial .attribution .who { font-weight: 600; color: var(--ink-900); font-size: 14px; }
.testimonial .attribution .role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-3); }

/* ============ CTA BAND ============ */
.cta-band {
  position: relative;
  background: var(--ink-950);
  color: #fff;
  padding: var(--space-10) 0;
  overflow: hidden;
}
.cta-band .inner { position: relative; z-index: 2; max-width: 1040px; margin: 0 auto; padding: 0 var(--gutter); text-align: center; }
.cta-band h2 {
  color: #fff;
  font-size: clamp(40px, 4vw + 16px, 84px);
  letter-spacing: -0.035em;
  line-height: 1;
}
.cta-band h2 em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  background: linear-gradient(180deg, var(--tide-300), var(--tide-500), var(--tide-700));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-band .lede { margin-top: 22px; color: rgba(255,255,255,.78); font-size: 18px; }
.cta-band .ctas { margin-top: 36px; display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.cta-band .form { margin-top: 28px; display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.cta-band .form input {
  flex: 0 1 360px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 14px 22px;
  font-family: inherit; font-size: 15px;
  outline: none;
  transition: border-color .24s, background .24s;
}
.cta-band .form input::placeholder { color: rgba(255,255,255,.5); }
.cta-band .form input:focus { border-color: var(--tide-400); background: rgba(255,255,255,.10); }
.cta-band .form .success { color: var(--mint-500); font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.08em; }

/* ============ FOOTER ============ */
.dmf-footer {
  background: var(--ink-950);
  color: #fff;
  padding: var(--space-9) 0 var(--space-6);
  border-top: 1px solid rgba(255,255,255,.06);
}
.dmf-footer .inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.dmf-footer .top { display: grid; grid-template-columns: 260px 1fr; gap: 64px; align-items: flex-start; }
.dmf-footer .brand { display: flex; flex-direction: column; gap: 18px; color: #fff; }
.dmf-footer .brand .lockup { display: flex; align-items: center; gap: 10px; }
.dmf-footer .brand .mark { width: 30px; height: 30px; border-radius: 7px; background: #fff; display: flex; align-items: center; justify-content: center; }
.dmf-footer .brand .mark svg { width: 15px; height: 15px; }
.dmf-footer .brand .word { font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: -0.02em; }
.dmf-footer .brand p { color: rgba(255,255,255,.66); font-size: 14px; line-height: 1.55; margin: 0; }
.dmf-footer .cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.dmf-footer .col h6 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin: 0 0 14px; font-weight: 500; }
.dmf-footer .col a { display: block; color: rgba(255,255,255,.86); font-size: 14px; padding: 5px 0; background-image: none; }
.dmf-footer .col a:hover { color: var(--tide-300); }
.dmf-footer .bottom {
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,.5);
}
.dmf-footer .socials { display: flex; gap: 14px; }
.dmf-footer .socials a { color: rgba(255,255,255,.66); display: inline-flex; }
.dmf-footer .socials a:hover { color: #fff; }
.dmf-footer .socials svg { width: 18px; height: 18px; stroke-width: 1.75; }

/* ============ HUB PAGE ============ */
.hub-hero {
  position: relative;
  background: var(--ink-900);
  color: #fff;
  padding: 130px 0 var(--space-9);
  margin-top: -72px;
  overflow: hidden;
}
.hub-hero .inner { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.hub-hero .breadcrumb { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 22px; display: flex; gap: 8px; flex-wrap: wrap; }
.hub-hero .breadcrumb a { color: rgba(255,255,255,.78); background-image: none; }
.hub-hero .breadcrumb a:hover { color: #fff; }
.hub-hero .breadcrumb .sep { color: rgba(255,255,255,.36); }
.hub-hero h1 { color: #fff; font-size: clamp(48px, 5vw + 16px, 96px); letter-spacing: -0.035em; line-height: 1.0; margin: 0; max-width: 1100px; }
.hub-hero h1 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--tide-300); line-height: 1.1; }
.hub-hero .lede { margin-top: 28px; max-width: 620px; font-size: 19px; color: rgba(255,255,255,.78); line-height: 1.5; }
.hub-hero .icon-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(59,130,255,.16);
  border: 1px solid rgba(124,183,255,.30);
  color: var(--tide-300);
  margin-bottom: 24px;
}
.hub-hero .icon-badge svg { width: 28px; height: 28px; stroke-width: 1.75; }

.subpillar-grid {
  background: var(--paper);
  padding: var(--space-10) 0 var(--space-9);
}
.subpillar-grid .inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.subpillar-grid .head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: var(--space-7); gap: 24px; }
.subpillar-grid .head h2 { font-size: clamp(34px, 2.4vw + 16px, 52px); max-width: 720px; }
.subpillar-grid .grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.subpillar-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--border-light);
  padding: 28px;
  text-decoration: none; background-image: none;
  color: var(--ink-900);
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 20px;
  align-items: flex-start;
  transition: transform 320ms var(--ease-standard), box-shadow 320ms var(--ease-standard), border-color 320ms var(--ease-standard);
}
.subpillar-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: rgba(30,91,255,.18); }
.subpillar-card .ic {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--tide-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--tide-700);
}
.subpillar-card .ic svg { width: 22px; height: 22px; stroke-width: 1.75; }
.subpillar-card h3 { font-size: 20px; margin: 0 0 8px; letter-spacing: -0.015em; }
.subpillar-card p { color: var(--fg-3); font-size: 14px; line-height: 1.5; margin: 0; }
.subpillar-card .arr { color: var(--fg-3); transition: transform 320ms var(--ease-standard), color 320ms var(--ease-standard); }
.subpillar-card:hover .arr { color: var(--tide-700); transform: translate(3px, -2px); }
.subpillar-card .arr svg { width: 20px; height: 20px; stroke-width: 1.75; }

/* ============ SUB-PILLAR (leaf) PAGE ============ */
.subpillar-hero {
  position: relative;
  background: var(--ink-950);
  color: #fff;
  padding: 140px 0 var(--space-9);
  margin-top: -72px;
  overflow: hidden;
}
.subpillar-hero .inner { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.subpillar-hero .breadcrumb { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 22px; display: flex; gap: 8px; flex-wrap: wrap; }
.subpillar-hero .breadcrumb a { color: rgba(255,255,255,.78); background-image: none; }
.subpillar-hero .breadcrumb .sep { color: rgba(255,255,255,.36); }
.subpillar-hero h1 { font-size: clamp(44px, 4.4vw + 14px, 88px); letter-spacing: -0.03em; line-height: 1.02; color: #fff; max-width: 920px; }
.subpillar-hero h1 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--tide-300); line-height: 1.1; }
.subpillar-hero .lede { margin-top: 24px; max-width: 620px; font-size: 18px; color: rgba(255,255,255,.78); }

.subpillar-body {
  background: var(--paper);
  padding: var(--space-10) 0;
}
.subpillar-body .inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
}
.subpillar-toc {
  position: sticky;
  top: 96px;
  align-self: start;
}
.subpillar-toc h6 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-3); margin: 0 0 14px; font-weight: 500; }
.subpillar-toc ul { list-style: none; margin: 0; padding: 0; border-left: 1px solid var(--border-light); }
.subpillar-toc li a {
  display: block;
  padding: 8px 14px;
  margin-left: -1px;
  color: var(--fg-3);
  font-size: 14px;
  border-left: 1px solid transparent;
  background-image: none;
  transition: color .24s, border-color .24s;
}
.subpillar-toc li a:hover, .subpillar-toc li a.active { color: var(--ink-900); border-left-color: var(--tide-500); }

.subpillar-content section { margin-bottom: var(--space-9); }
.subpillar-content h2 { font-size: clamp(28px, 1.4vw + 18px, 40px); margin-bottom: 18px; }
.subpillar-content p { font-size: 17px; line-height: 1.65; color: var(--fg-2); max-width: 680px; }
.subpillar-content .callout {
  margin: 24px 0;
  padding: 22px 26px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--tide-500);
  border-radius: 14px;
  font-size: 16px;
  color: var(--ink-800);
  line-height: 1.55;
  max-width: 680px;
}
.subpillar-content .checks { list-style: none; padding: 0; margin: 18px 0; max-width: 680px; }
.subpillar-content .checks li {
  display: flex; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 16px;
  color: var(--ink-800);
}
.subpillar-content .checks li:last-child { border-bottom: 0; }
.subpillar-content .checks li svg { color: var(--tide-700); flex-shrink: 0; margin-top: 3px; }

.geo-strip {
  background: var(--ink-900);
  color: #fff;
  padding: var(--space-7) 0;
  position: relative;
  overflow: hidden;
}
.geo-strip .inner { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.geo-strip h3 { color: #fff; font-size: clamp(24px, 1.4vw + 16px, 36px); margin: 0; max-width: 600px; }
.geo-strip .cities { display: flex; gap: 22px; flex-wrap: wrap; }
.geo-strip .cities a {
  font-family: var(--font-display); font-weight: 600; font-size: 18px;
  color: rgba(255,255,255,.78);
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1.5px;
  transition: background-size .3s var(--ease-standard), color .3s;
  letter-spacing: -0.01em;
}
.geo-strip .cities a:hover { color: #fff; background-size: 100% 1.5px; }

/* ============ INDUSTRIES SECTION ============ */
.industries {
  background: var(--white);
  padding: var(--space-10) 0 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}
.industries__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter) var(--space-7);
}
.industries__h2 {
  font-size: clamp(40px, 3.6vw + 16px, 72px);
  letter-spacing: -0.035em;
  line-height: 0.96;
  max-width: 900px;
}
.industries__h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--tide-700);
}
.industries__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--border-light);
  border-left: 1px solid var(--border-light);
  background: var(--paper);
}
.industries__grid .industry-cell {
  background: var(--white);
}
.industries__marquee {
  background: var(--ink-900);
  color: #fff;
  padding: 36px 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid--6 { grid-template-columns: repeat(2, 1fr); }
  .process .grid { grid-template-columns: repeat(2, 1fr); }
  .case-study .inner { grid-template-columns: 1fr; }
  .stat-strip .inner { grid-template-columns: repeat(2, 1fr); }
  .stat-strip .stat:nth-child(2) { border-right: 0; }
  .subpillar-grid .grid { grid-template-columns: 1fr; }
  .subpillar-body .inner { grid-template-columns: 1fr; }
  .subpillar-toc { display: none; }
  .dmf-footer .top { grid-template-columns: 1fr; }
  .dmf-footer .cols { grid-template-columns: repeat(2, 1fr); }
  .dmf-header nav { display: none; }
  .megamenu { display: none; }
  .industries__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============ TILT CARD WRAPPERS ============ */
.step-tilt { display: block; height: 100%; }
.step-tilt .step { height: 100%; }

/* ============ HERO STICKER FALLBACK POSITION ============ */
.hero__sticker { display: block; }
@media (max-width: 960px) {
  .hero__sticker { display: none; }
}

/* ============ TESTIMONIAL STARS ============ */
.testimonial .stars {
  display: inline-flex; gap: 4px;
  color: var(--spark-500);
  margin-bottom: 24px;
}
.testimonial .stars svg { stroke-width: 0; fill: currentColor; }



/* ============ HERO TRUST LINE ============ */
.hero__trust {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 15px;
  color: rgba(255,255,255,.86);
}
.hero__trust strong { color: #fff; font-weight: 700; }
.hero__trust .dot { color: rgba(255,255,255,.4); }

/* ============ TICKER STRIP ============ */
.ticker-strip {
  background: var(--ink-900);
  color: #fff;
  padding: 24px 0;
  position: relative;
  z-index: 2;
}
.ticker-strip .marquee__item {
  font-size: clamp(20px, 1.5vw + 14px, 28px);
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 0 22px;
}
.ticker-strip .marquee__sep {
  margin-left: 22px;
  color: var(--tide-300);
  font-size: 0.85em;
  opacity: 0.6;
}

/* ============ GUARANTEE BAR ============ */
.guarantee-bar {
  background: linear-gradient(90deg, var(--spark-100) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
}
.guarantee-bar .inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  flex-wrap: wrap;
}
.guarantee-bar .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--spark-500);
  color: var(--ink-900);
  flex-shrink: 0;
}
.guarantee-bar .check svg { stroke-width: 2.5; }
.guarantee-bar .text {
  font-size: 16px;
  color: var(--ink-800);
  line-height: 1.5;
}
.guarantee-bar .text strong { color: var(--ink-900); font-weight: 700; }

/* ============ WHY CHOOSE US ============ */
.why { background: var(--paper); padding: var(--space-10) 0; }
.why__inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.why__h2 {
  font-size: clamp(36px, 2.8vw + 18px, 60px);
  letter-spacing: -0.03em;
  line-height: 1.04;
  max-width: 900px;
}
.why__h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--tide-700);
}
.why__lede {
  margin-top: 20px;
  max-width: 720px;
  font-size: 18px;
  color: var(--fg-2);
  line-height: 1.55;
}
.why__grid {
  margin-top: var(--space-7);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  transition: box-shadow .32s var(--ease-standard), border-color .32s var(--ease-standard);
}
.why-card:hover { box-shadow: var(--shadow-md); border-color: rgba(30,91,255,.16); }
.why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--tide-100);
  color: var(--tide-700);
  margin-bottom: 18px;
}
.why-card h4 {
  font-size: 19px;
  margin: 0 0 10px;
  letter-spacing: -0.015em;
  color: var(--ink-900);
}
.why-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-3);
}

/* ============ SERVICES V2 ============ */
.services-v2 { background: var(--white); padding: var(--space-10) 0; }
.services-v2__head { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); margin-bottom: var(--space-7); }
.services-v2__head h2 {
  font-size: clamp(38px, 3vw + 18px, 64px);
  letter-spacing: -0.035em;
  line-height: 1.0;
}
.services-v2__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--tide-700);
}
.services-v2__lede {
  margin-top: 20px;
  max-width: 760px;
  font-size: 18px;
  color: var(--fg-2);
  line-height: 1.55;
}
.services-v2__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.svc-card-tilt { display: block; height: 100%; }
.svc-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--paper);
  border: 1px solid var(--border-light);
  border-radius: 22px;
  padding: 28px;
  color: var(--ink-900);
  text-decoration: none; background-image: none;
  transition: background .32s var(--ease-standard), border-color .32s var(--ease-standard), box-shadow .32s var(--ease-standard);
  min-height: 360px;
}
.svc-card:hover {
  background: #fff;
  border-color: rgba(30,91,255,.20);
  box-shadow: var(--shadow-md);
}
.svc-card__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.svc-card__num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--tide-700);
  font-weight: 500;
}
.svc-card__icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--ink-900);
  color: #fff;
}
.svc-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.svc-card p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-3);
  margin: 0 0 18px;
  flex-grow: 1;
}
.svc-card__tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 18px;
}
.svc-card__tags .tag {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border-light);
  font-size: 12px;
  color: var(--ink-800);
  font-weight: 500;
}
.svc-card__cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--tide-700);
  transition: gap .24s var(--ease-standard);
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}
.svc-card:hover .svc-card__cta { gap: 10px; }

/* ============ CLIENT RESULTS ============ */
.results { background: var(--paper); padding: var(--space-10) 0; }
.results__inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.results h2 {
  font-size: clamp(36px, 2.8vw + 18px, 60px);
  letter-spacing: -0.03em;
}
.results h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--tide-700);
}
.results__grid {
  margin-top: var(--space-7);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.result-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 22px;
  padding: 32px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow .32s var(--ease-standard);
}
.result-card:hover { box-shadow: var(--shadow-md); }
.result-card__stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--tide-700);
}
.result-card__stat-label {
  margin-top: 6px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-800);
  letter-spacing: -0.005em;
  line-height: 1.4;
}
.result-card blockquote {
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-900);
  letter-spacing: -0.005em;
  flex-grow: 1;
}
.result-card__author {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 12px;
}
.result-card__author .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background-color: var(--ink-100);
  background-size: cover; background-position: center;
  flex-shrink: 0;
}
.result-card__author .who { font-weight: 600; font-size: 14px; color: var(--ink-900); }
.result-card__author .role { font-size: 12.5px; color: var(--fg-3); margin-top: 2px; line-height: 1.3; }

/* ============ CREDENTIALS ============ */
.credentials { background: var(--white); padding: var(--space-9) 0; border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.credentials__inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); text-align: center; }
.credentials h2 {
  font-size: clamp(32px, 2.4vw + 16px, 52px);
  letter-spacing: -0.025em;
  line-height: 1.06;
}
.credentials h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--tide-700);
}
.credentials__lede {
  margin: 20px auto 0;
  max-width: 720px;
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.55;
}
.credentials__row {
  margin-top: var(--space-7);
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px;
}
.cred-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--paper);
  border: 1px solid var(--border-light);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-900);
  transition: border-color .24s, background .24s;
}
.cred-chip:hover { border-color: var(--tide-500); background: var(--tide-100); }
.cred-chip svg { color: var(--tide-700); flex-shrink: 0; }

/* ============ COVERAGE ============ */
.coverage {
  position: relative;
  background: var(--ink-900);
  color: #fff;
  padding: var(--space-10) 0;
  overflow: hidden;
}
.coverage__inner { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.coverage h2 {
  color: #fff;
  font-size: clamp(36px, 2.8vw + 18px, 60px);
  letter-spacing: -0.03em;
  line-height: 1.04;
  max-width: 1000px;
}
.coverage h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(180deg, var(--tide-300), var(--tide-500));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.coverage__lede {
  margin-top: 20px;
  max-width: 760px;
  font-size: 17px;
  color: rgba(255,255,255,.78);
  line-height: 1.55;
}
.coverage__grid {
  margin-top: var(--space-7);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.coverage-cell {
  padding: 16px 14px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  letter-spacing: -0.01em;
  transition: background .24s, border-color .24s, transform .24s;
}
.coverage-cell:hover {
  background: var(--tide-500);
  border-color: var(--tide-500);
  transform: translateY(-2px);
}
.coverage-cell--more {
  background: var(--tide-700);
  border-color: var(--tide-700);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 400;
}

/* ============ CTA BAND CONTACT STRIP ============ */
.cta-band__contact {
  margin-top: var(--space-7);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,.10);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,.86);
}
.cta-band__contact .contact-item {
  display: flex; align-items: center; gap: 10px;
  text-align: left;
}
.cta-band__contact .contact-item svg { color: var(--tide-300); flex-shrink: 0; }
.cta-band__contact .contact-item strong { color: #fff; font-weight: 600; margin-right: 4px; }

/* ============ RESPONSIVE FOR NEW SECTIONS ============ */
@media (max-width: 960px) {
  .why__grid { grid-template-columns: 1fr; }
  .services-v2__grid { grid-template-columns: 1fr; }
  .results__grid { grid-template-columns: 1fr; }
  .coverage__grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band__contact { grid-template-columns: 1fr; }
}


/* ============ MEGAMENU v2 â€” cleaner 3Ã—2 grid ============ */
.megamenu .inner {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 10px !important;
  padding: 0 var(--gutter);
}
.megamenu__card {
  display: grid;
  grid-template-columns: auto auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 6px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
  text-decoration: none;
  background-image: none;
  transition: background .24s var(--ease-standard), border-color .24s var(--ease-standard), transform .24s var(--ease-standard);
}
.megamenu__card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(124,183,255,.30);
  transform: translateY(-1px);
}
.megamenu__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--tide-300);
  font-weight: 500;
  grid-column: 1; grid-row: 1;
}
.megamenu__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(124,183,255,.14);
  color: var(--tide-300);
  grid-column: 2; grid-row: 1 / span 2;
  align-self: center;
}
.megamenu__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.015em;
  color: #fff;
  grid-column: 3; grid-row: 1;
}
.megamenu__blurb {
  font-size: 13px;
  color: rgba(255,255,255,.66);
  line-height: 1.45;
  grid-column: 3; grid-row: 2;
}

/* ============ INDUSTRIES SERVED ============ */
.industries-served {
  background: var(--paper);
  padding: var(--space-10) 0;
}
.industries-served__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.industries-served__sub {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--fg-3);
  letter-spacing: -0.005em;
  margin-bottom: 10px;
}
.industries-served h2 {
  font-size: clamp(40px, 3vw + 18px, 64px);
  letter-spacing: -0.035em;
  line-height: 1.04;
}
.industries-served h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--tide-700);
}
.industries-served__grid {
  margin-top: var(--space-7);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.industry-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  transition: background .28s var(--ease-standard), border-color .28s var(--ease-standard), box-shadow .28s var(--ease-standard);
}
.industry-pill:hover {
  background: var(--ink-900);
  border-color: var(--ink-900);
  box-shadow: var(--shadow-md);
}
.industry-pill:hover .industry-pill__name { color: #fff; }
.industry-pill:hover .industry-pill__icon { background: var(--tide-500); color: #fff; }
.industry-pill__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--tide-100);
  color: var(--tide-700);
  flex-shrink: 0;
  transition: background .28s, color .28s;
  font-size: 18px;
}
.industry-pill__emoji {
  font-size: 18px;
  line-height: 1;
  filter: grayscale(0.2);
}
.industry-pill__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.012em;
  color: var(--ink-900);
  transition: color .28s;
}

@media (max-width: 960px) {
  .industries-served__grid { grid-template-columns: repeat(2, 1fr); }
  .megamenu .inner { grid-template-columns: 1fr !important; }
}


/* ===== kinetic.css ===== */
/* Kinetic effects â€” JS-driven motion primitives.
   Pair with Kinetic.jsx. */

/* ====== Cursor blob (custom cursor halo) ====== */
.cursor-blob {
  position: fixed;
  top: 0; left: 0;
  width: 360px; height: 360px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(124,183,255,0.45) 0%, rgba(124,183,255,0) 65%);
  mix-blend-mode: screen;
  filter: blur(6px);
  transition: opacity .35s ease;
  will-change: transform;
}

/* ====== Magnetic button ====== */
.mag { display: inline-block; line-height: 0; }
.mag__inner {
  display: inline-block;
  transition: transform .42s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* ====== Tilt card ====== */
.tilt {
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .35s var(--ease-standard);
  will-change: transform;
}

/* ====== Reveal-on-scroll ====== */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s var(--ease-standard), transform .9s var(--ease-standard);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ====== Split text reveal (word-by-word) ====== */
.split-wrap { display: inline; }
.split-wrap .split-w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: 1.18;
  padding-top: 0.12em;
  padding-bottom: 0.12em;
  margin-top: -0.12em;
  margin-bottom: -0.12em;
}
.split-wrap .split-sp {
  display: inline-block;
  width: 0.28em;          /* explicit inter-word space â€” never clipped */
  white-space: pre;
}
.split-wrap .split-w__inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.split-wrap .split-w.is-in .split-w__inner {
  transform: translateY(0);
}

/* ====== Floating sticker ====== */
.sticker {
  display: inline-block;
  animation: sticker-bob 6s ease-in-out infinite;
  will-change: transform;
}
.sticker__inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--spark-500);
  color: var(--ink-900);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.005em;
  box-shadow: 0 10px 30px rgba(255,181,71,.35);
  transform: rotate(-3deg);
  animation: sticker-spin 22s linear infinite;
}
@keyframes sticker-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes sticker-spin {
  0%   { transform: rotate(-3deg); }
  50%  { transform: rotate(3deg); }
  100% { transform: rotate(-3deg); }
}

/* Sticker variants */
.sticker--mint .sticker__inner { background: #4ADE80; box-shadow: 0 10px 30px rgba(74,222,128,.35); }
.sticker--tide .sticker__inner { background: var(--tide-300); color: var(--ink-900); box-shadow: 0 10px 30px rgba(124,183,255,.35); }
.sticker--ink  .sticker__inner { background: var(--ink-900); color: #fff; }

/* ====== Marquee ====== */
.marquee {
  overflow: hidden;
  width: 100%;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee-roll linear infinite;
  will-change: transform;
}
.marquee--hover-pause:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  padding: 0 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3vw + 12px, 56px);
  letter-spacing: -0.02em;
  color: inherit;
}
.marquee__sep {
  margin-left: 28px;
  color: var(--spark-500);
  font-size: 0.7em;
  opacity: 0.85;
}
@keyframes marquee-roll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ====== Gradient shimmer text ====== */
.shimmer-text {
  background: linear-gradient(
    100deg,
    var(--tide-300) 0%,
    var(--spark-400) 30%,
    var(--tide-300) 60%,
    var(--tide-700) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmer 7s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ====== Bouncing scroll cue ====== */
.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 5;
}
.scroll-cue__line {
  width: 1.5px; height: 36px;
  background: linear-gradient(180deg, transparent, var(--tide-300));
  position: relative;
  overflow: hidden;
}
.scroll-cue__line::after {
  content: "";
  position: absolute;
  top: -100%; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, transparent, #fff, transparent);
  animation: scroll-cue-down 1.8s var(--ease-standard) infinite;
}
@keyframes scroll-cue-down {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ====== Hero parallax wrapper ====== */
.parallax-y { will-change: transform; transition: transform .3s ease-out; }

/* ====== Industries grid item hover ====== */
.industry-cell {
  position: relative;
  padding: 24px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  transition: background .32s var(--ease-standard), color .32s var(--ease-standard);
  overflow: hidden;
}
.industry-cell::before {
  content: "";
  position: absolute;
  inset: auto -10% -100% -10%;
  height: 140%;
  background: linear-gradient(180deg, var(--tide-500), var(--tide-700));
  transition: transform .42s var(--ease-standard);
  z-index: -1;
  transform: translateY(100%);
}
.industry-cell:hover { color: #fff; }
.industry-cell:hover::before { transform: translateY(0); }
.industry-cell { isolation: isolate; }

/* Highlight pulse used on small badges */
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint-500);
  box-shadow: 0 0 0 0 rgba(74,222,128,.7);
  animation: dot-pulse 1.8s infinite;
}
@keyframes dot-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,.55); }
  70%  { box-shadow: 0 0 0 10px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

/* Award rosette */
.award {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.award .star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--spark-500);
  color: var(--ink-900);
  animation: award-spin 14s linear infinite;
}
@keyframes award-spin {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

/* Hero magnetic CTA visual */
.btn--mag {
  position: relative;
  overflow: hidden;
}
.btn--mag::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.25), transparent 60%);
  opacity: 0;
  transition: opacity .3s var(--ease-standard);
  pointer-events: none;
}
.btn--mag:hover::before { opacity: 1; }

/* Updated logo (real image) */
.dmf-header .logo .logo-img {
  height: 40px;
  width: auto;
  display: block;
}

/* Reduced motion overrides */
@media (prefers-reduced-motion: reduce) {
  .cursor-blob, .sticker, .marquee__track, .shimmer-text, .scroll-cue__line::after, .award .star {
    animation: none !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .split-wrap .split-w__inner { transform: none !important; }
}


/* ===== sections-extra.css ===== */
/* ============================================================
   DMF homepage â€” section styles completed for the final
   verbatim-content build. Authored to match the existing
   kit.css / kinetic.css brand language (tokens only).
   ============================================================ */

/* ===== INTRO SECTION ===== */
.intro-sec { background: var(--paper); padding: var(--space-10) 0 var(--space-9); }
.intro-sec__inner { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }
.intro-sec__para { font-size: clamp(19px, .6vw + 17px, 23px); line-height: 1.6; color: var(--fg-2); margin: 0 0 24px; }
.guarantee-card {
  margin-top: var(--space-6);
  display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start;
  padding: 28px 30px;
  background: linear-gradient(180deg, #fff, var(--spark-100));
  border: 1px solid rgba(199,130,30,.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.guarantee-card__badge { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 14px; background: var(--spark-500); color: var(--ink-900); flex-shrink: 0; }
.guarantee-card__title { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -.02em; color: var(--ink-900); margin-bottom: 6px; }
.guarantee-card__body { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--fg-2); }

/* ===== WHY PERFORMANCE ===== */
.why-perf { background: var(--white); padding: var(--space-10) 0; border-top: 1px solid var(--border-light); }
.why-perf__inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.why-perf__h2 { font-size: clamp(34px, 2.6vw + 16px, 56px); letter-spacing: -.03em; line-height: 1.05; max-width: 980px; margin-top: 6px; }
.why-perf__h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--tide-700); }
.why-perf__lede { margin-top: 20px; max-width: 820px; font-size: 18px; line-height: 1.6; color: var(--fg-2); }
.why-perf__grid { margin-top: var(--space-7); display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.perf-card { height: 100%; background: var(--paper); border: 1px solid var(--border-light); border-radius: 18px; padding: 26px; }
.perf-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: var(--tide-100); color: var(--tide-700); margin-bottom: 16px; }
.perf-card h4 { font-size: 17px; line-height: 1.35; letter-spacing: -.01em; color: var(--ink-900); margin: 0 0 10px; }
.perf-card p { font-size: 14.5px; line-height: 1.6; color: var(--fg-3); margin: 0; }
.why-perf__close { margin-top: var(--space-6); font-size: 18px; color: var(--fg-2); }
.why-perf__close strong { color: var(--ink-900); }

/* ===== SERVICES DETAILED ===== */
.svc-detailed { background: var(--paper); padding: var(--space-10) 0; }
.svc-detailed__head { max-width: var(--container); margin: 0 auto var(--space-7); padding: 0 var(--gutter); }
.svc-detailed__head h2 { font-size: clamp(36px, 3vw + 16px, 60px); letter-spacing: -.035em; line-height: 1.0; }
.svc-detailed__head h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--tide-700); }
.svc-detailed__list { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); display: flex; flex-direction: column; gap: 14px; }
.svc-d { display: grid; grid-template-columns: 320px 1fr; gap: 40px; background: #fff; border: 1px solid var(--border-light); border-radius: 22px; padding: 36px; }
.svc-d__rail { align-self: start; position: sticky; top: 96px; }
.svc-d__top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.svc-d__num { font-family: var(--font-mono); font-size: 13px; letter-spacing: .12em; color: var(--tide-700); font-weight: 500; }
.svc-d__icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 12px; background: var(--ink-900); color: #fff; }
.svc-d__title { font-size: 24px; letter-spacing: -.02em; line-height: 1.15; margin: 0 0 18px; color: var(--ink-900); }
.svc-d__whatis-label { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-3); margin-bottom: 6px; }
.svc-d__whatis p { font-size: 15px; line-height: 1.55; color: var(--fg-2); margin: 0; }
.svc-d__content { min-width: 0; }
.svc-d__h { font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-900); margin: 0 0 12px; }
.svc-d__p { font-size: 15.5px; line-height: 1.65; color: var(--fg-2); margin: 0 0 16px; }
.svc-d__deliverable { display: flex; flex-direction: column; gap: 8px; background: var(--tide-100); border: 1px solid rgba(30,91,255,.18); border-radius: 14px; padding: 18px 20px; margin: 8px 0 16px; }
.svc-d__tag { align-self: flex-start; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--tide-900); font-weight: 600; }
.svc-d__deliverable p { margin: 0; font-size: 15px; color: var(--ink-800); line-height: 1.55; }
.svc-d__note { display: flex; gap: 10px; align-items: flex-start; background: var(--paper); border: 1px solid var(--border-light); border-left: 3px solid var(--tide-500); border-radius: 12px; padding: 14px 16px; margin: 8px 0 16px; font-size: 14.5px; color: var(--ink-800); line-height: 1.55; }
.svc-d__note svg { color: var(--tide-700); flex-shrink: 0; margin-top: 3px; }
.svc-d__kv { font-size: 15px; color: var(--fg-2); margin: 0 0 10px; }
.svc-d__kv-label { font-weight: 600; color: var(--ink-900); }
.svc-d__list { list-style: none; padding: 0; margin: 0 0 16px; }
.svc-d__list li { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; border-bottom: 1px solid var(--border-light); font-size: 14.5px; line-height: 1.55; color: var(--ink-800); }
.svc-d__list li:last-child { border-bottom: 0; }
.svc-d__list li svg { color: var(--tide-700); flex-shrink: 0; margin-top: 3px; }
.svc-d__olist { list-style: none; padding: 0; margin: 0 0 16px; }
.svc-d__olist li { display: flex; gap: 14px; align-items: flex-start; padding: 10px 0; font-size: 14.5px; line-height: 1.55; color: var(--ink-800); }
.svc-d__step { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; background: var(--ink-900); color: #fff; font-family: var(--font-mono); font-size: 12px; font-weight: 600; }
.svc-d__table-wrap { overflow-x: auto; margin: 0 0 16px; }

/* ===== TABLES ===== */
.dmf-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.dmf-table th { text-align: left; font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-3); padding: 10px 14px; border-bottom: 1px solid var(--border-strong-light); white-space: nowrap; }
.dmf-table td { padding: 11px 14px; border-bottom: 1px solid var(--border-light); color: var(--ink-800); line-height: 1.5; vertical-align: top; }
.dmf-table tbody tr:last-child td { border-bottom: 0; }
.dmf-table--dark th { color: rgba(255,255,255,.6); border-bottom-color: rgba(255,255,255,.18); }
.dmf-table--dark td { color: rgba(255,255,255,.82); border-bottom-color: rgba(255,255,255,.10); }

/* ===== GROWTH FRAMEWORK (dark) ===== */
.growth { position: relative; background: var(--ink-900); color: #fff; padding: var(--space-10) 0; overflow: hidden; }
.growth__inner { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.growth h2 { color: #fff; font-size: clamp(34px, 2.6vw + 16px, 56px); letter-spacing: -.03em; line-height: 1.06; }
.growth h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; background: linear-gradient(180deg, var(--tide-300), var(--tide-500)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.growth__lede { margin-top: 20px; max-width: 780px; font-size: 18px; color: rgba(255,255,255,.78); line-height: 1.55; }
.growth__grid { margin-top: var(--space-7); display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.growth-card { height: 100%; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); border-radius: 18px; padding: 28px; }
.growth-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.growth-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(124,183,255,.16); color: var(--tide-300); }
.growth-card__n { font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: #fff; font-weight: 500; }
.growth-card__tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; color: rgba(255,255,255,.5); margin-top: 2px; }
.growth-card h3 { color: #fff; font-size: 22px; letter-spacing: -.02em; margin: 0 0 10px; }
.growth-card p { color: rgba(255,255,255,.7); font-size: 14.5px; line-height: 1.6; margin: 0; }

/* ===== COVERAGE TABLE (dark section already styled in kit.css) ===== */
.coverage__table-wrap { margin-top: var(--space-7); border: 1px solid rgba(255,255,255,.10); border-radius: 16px; overflow: hidden; }
.coverage__table-wrap .dmf-table { font-size: 15px; }
.coverage__table-wrap .dmf-table th, .coverage__table-wrap .dmf-table td { padding: 16px 20px; }
.coverage__region { font-family: var(--font-display); font-weight: 600; color: #fff !important; white-space: nowrap; }
.coverage__foot { margin-top: var(--space-6); max-width: 820px; font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.66); }

/* ===== CLIENT RESULTS (case cards) ===== */
.case-card { height: 100%; background: #fff; border: 1px solid var(--border-light); border-radius: 22px; padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: box-shadow .32s var(--ease-standard); }
.case-card:hover { box-shadow: var(--shadow-md); }
.case-card__stat { font-family: var(--font-display); font-weight: 700; font-size: 46px; letter-spacing: -.04em; line-height: 1; color: var(--tide-700); }
.case-card__stat-label { margin-top: 6px; font-size: 14px; font-weight: 500; color: var(--ink-800); line-height: 1.4; }
.case-card__who { margin-top: 20px; font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--ink-900); letter-spacing: -.01em; }
.case-card__sector { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-3); margin-top: 4px; }
.case-card__cs { margin: 20px 0 0; padding-top: 18px; border-top: 1px solid var(--border-light); }
.case-card__cs dt { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--tide-700); margin-top: 14px; }
.case-card__cs dt:first-child { margin-top: 0; }
.case-card__cs dd { margin: 4px 0 0; font-size: 14.5px; line-height: 1.55; color: var(--fg-2); }
.case-card__result { color: var(--ink-900) !important; font-weight: 500; }

/* ===== FAQ ===== */
.faq { background: var(--white); padding: var(--space-10) 0; border-top: 1px solid var(--border-light); }
.faq__inner { max-width: 880px; margin: 0 auto; padding: 0 var(--gutter); }
.faq h2 { font-size: clamp(30px, 2vw + 16px, 48px); letter-spacing: -.025em; line-height: 1.1; }
.faq h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--tide-700); }
.faq__list { margin-top: var(--space-7); border-top: 1px solid var(--border-light); }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: none; border: 0; cursor: pointer; padding: 22px 0; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -.01em; color: var(--ink-900); }
.faq-item__chev { display: inline-flex; flex-shrink: 0; color: var(--tide-700); transition: transform .3s var(--ease-standard); }
.faq-item.is-open .faq-item__chev { transform: rotate(45deg); }
.faq-item__a { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease-standard); }
.faq-item__a p { margin: 0; padding: 0 0 24px; font-size: 15.5px; line-height: 1.65; color: var(--fg-2); max-width: 760px; }

/* ===== CREDENTIALS GRID + STATS BAR ===== */
.credentials__grid { margin-top: var(--space-7); display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; text-align: left; }
.cred-card { display: flex; gap: 14px; align-items: flex-start; background: var(--paper); border: 1px solid var(--border-light); border-radius: 16px; padding: 20px 22px; height: 100%; }
.cred-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; background: var(--tide-100); color: var(--tide-700); flex-shrink: 0; }
.cred-card__name { font-family: var(--font-display); font-weight: 600; font-size: 15.5px; color: var(--ink-900); letter-spacing: -.01em; }
.cred-card__body { font-size: 13px; line-height: 1.5; color: var(--fg-3); margin-top: 3px; }
.stats-bar { margin-top: var(--space-7); display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 16px; padding: 20px 24px; background: var(--ink-900); border-radius: 16px; color: rgba(255,255,255,.82); font-size: 15px; }
.stats-bar strong { color: #fff; font-weight: 700; }
.stats-bar__dot { color: rgba(255,255,255,.3); }

/* ===== CTA BAND LINKS ===== */
.cta-band__links { margin-top: var(--space-6); display: flex; flex-wrap: wrap; gap: 10px 28px; justify-content: center; }
.cta-band__links a { color: var(--tide-300); font-size: 14.5px; font-weight: 500; background-image: none; }
.cta-band__links a:hover { color: #fff; }
.cta-band .success { color: var(--mint-500); font-family: var(--font-mono); font-size: 14px; letter-spacing: .06em; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .why-perf__grid { grid-template-columns: 1fr; }
  .svc-d { grid-template-columns: 1fr; gap: 24px; padding: 26px; }
  .svc-d__rail { position: static; }
  .growth__grid { grid-template-columns: 1fr; }
  .credentials__grid { grid-template-columns: 1fr; }
  .guarantee-card { grid-template-columns: 1fr; }
}
