/* MooseFS website — section & component styles */

/* ==================== HEADER ==================== */
.mfs-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding-top: env(safe-area-inset-top, 0px); transition: background var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }
.mfs-header.is-sticky { background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 4px 20px -4px rgba(14,26,43,0.10), 0 1px 4px -1px rgba(14,26,43,0.06); }
.mfs-header-inner { display: flex; align-items: center; height: var(--header-height); gap: 22px; transition: height var(--dur-base) var(--ease-out); }
.mfs-header.is-sticky .mfs-header-inner { height: 56px; }
.mfs-brand { display:flex; align-items:center; gap: 10px; font-family: var(--font-brand); font-weight: 700; font-size: 22px; color: var(--navy-900); text-decoration: none; letter-spacing: -0.01em; }
.mfs-brand img { height: 32px; }
.mfs-brand:hover { text-decoration: none; color: var(--navy-900); }
.mfs-nav { display:flex; align-items: center; gap: 4px; margin-left: 22px; }
.mfs-nav-item { position: relative; }
.mfs-nav-trigger { background: transparent; border: 0; color: var(--fg-muted); font-size: 14.5px; font-weight: 500; padding: 8px 14px; border-radius: 6px; cursor: pointer; display: inline-flex; align-items: center; gap: 4px; }
.mfs-nav-trigger:hover { color: var(--navy-900); background: var(--navy-050); }
.mfs-nav-menu { position: absolute; top: 100%; left: 0; min-width: 220px; background: #fff; border: 1px solid var(--border); border-radius: 10px; box-shadow: var(--shadow-lg); padding: 8px; display:flex; flex-direction: column; }
.mfs-nav-menu a, .mfs-nav-menu .mfs-tbd { padding: 10px 14px; border-radius: 6px; color: var(--fg); font-size: 14px; font-weight: 500; text-decoration: none; }
.mfs-nav-menu a:hover { background: var(--bg-subtle); color: var(--accent); text-decoration: none; }
.mfs-header-right { margin-left: auto; display: flex; align-items: center; }
.mfs-search { display:flex; align-items: center; background: #fff; border: 1px solid var(--border-strong); border-radius: 6px; padding: 0 12px; height: 38px; gap: 8px; min-width: 220px; color: var(--fg-subtle); }
.mfs-search input { background: transparent; border: 0; color: var(--fg); font-family: inherit; font-size: 13px; height: 100%; outline: none; flex: 1; min-width: 0; }
.mfs-search input::placeholder { color: var(--fg-subtle); }
.mfs-search:focus-within,
.mfs-mobile-search:focus-within,
.mfs-search-panel:focus-within {
  border-color: var(--brand-burgundy);
  box-shadow: var(--shadow-focus);
}

/* Hamburger */
.mfs-hamburger { display: none; width: 40px; height: 40px; background: transparent; border: 1px solid var(--border-strong); border-radius: 6px; flex-direction: column; justify-content: center; align-items: center; padding: 0; cursor: pointer; margin-left: 10px; transition: background .15s var(--ease-out); }
.mfs-hamburger:hover { background: var(--navy-050); }
.mfs-hamburger-lines { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.mfs-hamburger-lines span { display: block; width: 18px; height: 2px; background: var(--navy-900); border-radius: 2px; transition: transform .2s var(--ease-out), opacity .2s var(--ease-out); }
.mfs-hamburger.is-open .mfs-hamburger-lines span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mfs-hamburger.is-open .mfs-hamburger-lines span:nth-child(2) { opacity: 0; }
.mfs-hamburger.is-open .mfs-hamburger-lines span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mfs-mobile-overlay { position: fixed; inset: 0; background: rgba(15,23,42,0.45); z-index: 49; animation: fadein .2s var(--ease-out); }
.mfs-mobile-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(360px, 86vw); background: #fff; z-index: 60; transform: translateX(100%); transition: transform .28s var(--ease-out); box-shadow: -8px 0 32px rgba(15,23,42,0.12); display: flex; flex-direction: column; padding-top: calc(var(--header-height) + env(safe-area-inset-top, 0px)); overflow-y: auto; }
.mfs-mobile-drawer.is-open { transform: translateX(0); }
.mfs-mobile-drawer-inner { padding: 8px 16px 32px; }
.mfs-mobile-search { display: flex; align-items: center; gap: 8px; background: var(--navy-050); border: 1px solid var(--border); border-radius: 6px; padding: 0 12px; height: 42px; color: var(--fg-subtle); margin: 12px 0 16px; }
.mfs-mobile-search input { background: transparent; border: 0; outline: none; font-family: inherit; font-size: 14px; flex: 1; min-width: 0; color: var(--fg); }
.mfs-mobile-nav { display: flex; flex-direction: column; }
.mfs-mobile-group { border-bottom: 1px solid var(--border); }
.mfs-mobile-group-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; background: transparent; border: 0; padding: 16px 4px; font-family: inherit; font-size: 16px; font-weight: 600; color: var(--navy-900); cursor: pointer; text-align: left; }
.mfs-mobile-group-trigger .caret { font-size: 20px; color: var(--fg-subtle); width: 20px; text-align: center; }
.mfs-mobile-sub { display: flex; flex-direction: column; padding: 0 4px 12px; }
.mfs-mobile-sub a, .mfs-mobile-sub .mfs-tbd { padding: 10px 12px; border-radius: 6px; color: var(--fg); font-size: 15px; font-weight: 500; text-decoration: none; }
.mfs-mobile-sub a:hover { background: var(--navy-050); color: var(--accent); }

/* ==================== HERO ==================== */
.mfs-hero-stage { position: relative; overflow-x: clip; }
.mfs-hero { position: relative; height: calc(var(--vh, 100vh) + var(--mfs-jumbo-offset, 6vw)); min-height: var(--mfs-hero-min-height, 680px); background: var(--hero-gradient); color: var(--fg); overflow: visible; padding-top: calc(var(--header-height) + env(safe-area-inset-top, 0px)); }
.mfs-hero-bg { position: absolute; inset: 0; background: var(--hero-wash); pointer-events: none; }
.mfs-hero-inner { position: relative; z-index: 2; padding: clamp(32px, 14vh, 160px) 0 0; display:flex; flex-direction: column; align-items: center; gap: clamp(16px, 4vh, 44px); }
.mfs-hero-question { color: var(--fg); font: 300 clamp(18px, min(7vw, 10vh), 80px)/1.1 var(--font-display); letter-spacing: -1.2px; text-align: center; }
.mfs-hero-question-line { display: block; white-space: nowrap; }
.mfs-hero-word-wrap { display: inline-block; min-width: 6ch; }
.mfs-hero-word { color: var(--brand-burgundy); display: inline-block; font-weight: 400; animation: fadein .55s var(--ease-out); }
@keyframes fadein { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.mfs-hero-actions { display: flex; gap: 14px; }

/* Morphing "MooseFS" wordmark */
.mfs-morph-word {
  position: absolute;
  left: 50%;
  top: 0;
  /* translateY instead of `top` keeps position on the GPU compositor thread,
     avoiding the layout→paint→composite cycle that caused a background jump on Safari */
  transform: translateX(-50%) translateY(calc((1 - var(--p, 0)) * (var(--vh, 100vh) - var(--mfs-jumbo-vw, 25vw) * var(--mfs-jumbo-sunken, 0.80)) + var(--p, 0) * (var(--vh, 100vh) + var(--mfs-jumbo-offset, 6vw) + 60px)));
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: calc((1 - var(--p, 0)) * var(--mfs-jumbo-vw, 25vw) + var(--p, 0) * clamp(2rem, 3.2vw, 3rem));
  letter-spacing: -0.02em;
  filter: blur(calc((1 - var(--p, 0)) * var(--mfs-jumbo-blur, 3px)));
  line-height: 1;
  color: rgba(21,35,58, calc(0.07 + var(--p, 0) * 0.83));
  pointer-events: none;
  user-select: none;
  z-index: 1;
  white-space: nowrap;
  will-change: transform, filter;
}
.mfs-intro-eyebrow-spacer { height: calc(clamp(2rem, 3.2vw, 3rem) * 1.15); margin-bottom: 12px; }

/* ==================== INTRO ==================== */
.mfs-intro { padding: 60px 0 80px; text-align: center; background: #fff; position: relative; }
.mfs-intro-eyebrow { font-family: var(--font-sans); font-weight: 600; color: var(--accent); font-size: 14px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.mfs-intro-title { font-family: var(--font-display); font-weight: 300; font-size: clamp(2rem, 3.2vw, 3rem); color: var(--fg); letter-spacing: -.015em; line-height: 1.15; max-width: 820px; margin: 0 auto 24px; text-wrap: balance; }
.mfs-intro-body { font-size: 17px; line-height: 1.7; color: var(--fg-muted); max-width: 760px; margin: 0 auto 36px; text-wrap: pretty; }
.mfs-intro-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ==================== SEARCH PAGE ==================== */
.mfs-search-page {
  padding: calc(var(--header-height) + 48px) 0 96px;
  min-height: 100vh;
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(197, 19, 41, 0.08) 0%, rgba(197, 19, 41, 0) 68%),
    linear-gradient(180deg, #fbfcfe 0%, #f4f6fa 100%);
}
.mfs-search-shell {
  max-width: 960px;
  margin: 0 auto;
}
.mfs-search-page-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.mfs-search-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 10ch;
}
.mfs-search-intro {
  max-width: 58ch;
  font-size: 17px;
  line-height: 1.7;
}
.mfs-search-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: stretch;
  padding: 14px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(205, 215, 229, 0.9);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.mfs-search-panel .btn {
  height: 58px;
  align-self: stretch;
}
.mfs-search-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px;
  background: var(--brand-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--fg-subtle);
}
.mfs-search-input-wrap input {
  width: 100%;
  border: 0;
  background: transparent;
  outline: none;
  color: var(--fg);
  font: 500 18px/1.4 var(--font-sans);
}
.mfs-search-input-wrap input::placeholder {
  color: var(--fg-subtle);
}
.mfs-search-status {
  margin: 18px 2px 0;
  min-height: 1.6em;
  font-size: 14px;
  color: var(--fg-muted);
}
.mfs-search-results {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}
.mfs-search-result {
  display: grid;
  gap: 12px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(205, 215, 229, 0.92);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}
.mfs-search-result:hover {
  border-color: rgba(197, 19, 41, 0.28);
  box-shadow: var(--shadow-lg);
}
.mfs-search-result-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: baseline;
  justify-content: space-between;
}
.mfs-search-result-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--fg);
  text-decoration: none;
}
.mfs-search-result-title:hover {
  color: var(--accent);
  text-decoration: none;
}
.mfs-search-result-url {
  font: 500 12px/1.4 var(--font-mono);
  color: var(--fg-subtle);
}
.mfs-search-result-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-muted);
}
.mfs-search-result mark,
.mfs-search-result-title mark,
.mfs-search-result-excerpt mark {
  background: var(--brand-burgundy-tint);
  color: var(--brand-burgundy-deep);
  padding: 0 0.18em;
  border-radius: 0.2em;
  box-shadow: inset 0 -1px 0 rgba(197, 19, 41, 0.18);
}

/* ==================== USE CASES ==================== */
.uc-section { padding: 96px 0 80px; position: relative; background: radial-gradient(ellipse at center, #14223a 0%, #07101f 60%, #050a14 100%); }
.uc-eyebrow { font: 600 11.5px var(--font-sans); letter-spacing: .18em; text-transform: uppercase; color: var(--brand-burgundy); margin: 0 0 14px; }
.uc-section-head { display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; align-items: end; margin-bottom: 28px; }
.uc-title { font-family: var(--font-display); font-weight: 300; font-size: clamp(32px, 4.4vw, 52px); line-height: 1.10; letter-spacing: -.025em; color: #fff; margin: 0; text-wrap: balance; }
.uc-intro { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.62); margin: 0; max-width: 52ch; text-wrap: pretty; }
/* stage */
.uc-stage { position: relative; height: 500px; overflow: hidden; box-shadow: inset 0 0 120px rgba(0,0,0,0.45); }
.uc-stage-grid { position: absolute; top: 24px; bottom: 170px; left: max(32px, calc((100% - var(--container)) / 2 + 32px)); right: max(32px, calc((100% - var(--container)) / 2 + 32px)); display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(3, 1fr); gap: 4px; align-items: center; justify-items: center; }
.uc-name { font-family: var(--font-display); font-weight: 300; font-size: 26px; letter-spacing: -.012em; color: rgba(255,255,255,0.36); text-align: center; line-height: 1.1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; overflow-wrap: break-word; max-width: 100%; padding: 0 10px; box-sizing: border-box; transition: color .45s var(--ease-out), transform .55s var(--ease-out), opacity .9s var(--ease-out), text-shadow .45s var(--ease-out); position: relative; z-index: 2; cursor: default; user-select: none; }
.uc-name.is-on { color: #fff; transform: scale(1.18); text-shadow: 0 0 18px rgba(255,212,128,0.55), 0 0 36px rgba(255,182,82,0.28); overflow: visible; }
/* spotlight */
.uc-spotlight { position: absolute; left: 0; top: 0; width: 300px; height: 300px; background: radial-gradient(circle at center, rgba(255,200,118,0.22) 0%, rgba(255,184,86,0.13) 22%, rgba(255,168,62,0.05) 46%, transparent 68%); border-radius: 50%; pointer-events: none; transition: transform 1.0s var(--ease-out), opacity .35s var(--ease-out), filter .35s var(--ease-out); z-index: 1; will-change: transform; mix-blend-mode: screen; }
.uc-spotlight.is-pointer { transition: transform 1.4s var(--ease-out), opacity .35s var(--ease-out), filter .35s var(--ease-out); opacity: .82; filter: brightness(.88); }
/* caption strip */
.uc-caption { position: absolute; left: max(32px, calc((100% - var(--container)) / 2 + 32px)); right: max(32px, calc((100% - var(--container)) / 2 + 32px)); bottom: 28px; height: 118px; display: block; color: #fff; z-index: 3; border-top: 1px solid rgba(255,255,255,0.10); padding-top: 18px; }
.uc-below-stage { position: relative; z-index: 4; margin-top: -28px; display: flex; justify-content: flex-end; padding: 0 max(32px, calc((100% - var(--container)) / 2 + 32px)); }
.uc-cap-body { min-width: 0; position: relative; align-self: stretch; display: flex; flex-direction: column; justify-content: flex-end; }
.uc-caption-tag { font: 600 11.5px var(--font-sans); letter-spacing: .18em; text-transform: uppercase; color: var(--brand-burgundy-soft); margin-bottom: 8px; opacity: .95; }
.uc-caption-title { font-family: var(--font-display); font-weight: 300; font-size: 30px; color: #fff; margin: 0 0 6px; letter-spacing: -.022em; line-height: 1.05; min-height: 1.05em; overflow: hidden; position: relative; }
.uc-caption-blurb { font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,0.72); margin: 0; max-width: 56ch; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: calc(2 * 1.55em); }
/* marquee roll */
.uc-caption-title .roll-out, .uc-caption-title .roll-in { display: block; }
.uc-caption-title .roll-out { position: absolute; left: 0; right: 0; animation: rollOut .55s var(--ease-out) both; }
.uc-caption-title .roll-in  { animation: rollIn  .55s var(--ease-out) both; }
@keyframes rollOut { 0% { opacity:1; transform:translateY(0); } 100% { opacity:0; transform:translateY(-1.1em); } }
@keyframes rollIn  { 0% { opacity:0; transform:translateY(1.1em); } 100% { opacity:1; transform:translateY(0); } }
/* tag + blurb swap animations */
.uc-caption-tag.is-swap   { animation: ucTagIn   .35s var(--ease-out) both; }
.uc-caption-blurb.is-swap { animation: ucBlurbIn .55s var(--ease-out) both; animation-delay: .18s; }
@keyframes ucTagIn   { 0% { opacity:0; letter-spacing:.30em; } 100% { opacity:.95; letter-spacing:.18em; } }
@keyframes ucBlurbIn { 0% { opacity:0; transform:translateY(6px); } 100% { opacity:.72; transform:translateY(0); } }
/* see all link */
.uc-more { font: 600 12.5px var(--font-sans); letter-spacing: .04em; color: var(--brand-burgundy-soft); text-decoration: none; white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; transition: color .2s var(--ease-out); cursor: pointer; }
.uc-more::after { content: ' →'; transition: transform .2s; display: inline-block; }
.uc-more:hover { color: #fff; text-decoration: none; }
.uc-more:hover::after { transform: translateX(3px); }


/* ==================== ANNOUNCEMENT ==================== */
.mfs-ann2-dark { padding: 110px 0; text-align: center; background: radial-gradient(ellipse at center, #14223a 0%, #07101f 60%, #050a14 100%); }
.mfs-ann2-dark-eyebrow { display: inline-block; font: 700 18px var(--font-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--brand-burgundy-soft); margin-bottom: 22px; }
.mfs-ann2-dark-title { font: 300 clamp(34px, 5.5vw, 64px)/1.12 var(--font-display); color: #fff; margin: 0 0 20px; letter-spacing: -.02em; }
.mfs-ann2-dark-title-sub { display: block; font: 300 clamp(18px, 2.6vw, 28px)/1.3 var(--font-display); color: rgba(255,255,255,.7); margin-top: 10px; letter-spacing: -.005em; }
.mfs-ann2-dark-text { max-width: 560px; margin: 0 auto 32px; color: rgba(255,255,255,.65); font-size: 16px; line-height: 1.6; }

/* ==================== VIDEO ==================== */
.mfs-video { padding: 80px 0; background: #fff; }
.mfs-video-wrap { display: block; max-width: 900px; margin: 0 auto; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg); position: relative; text-decoration: none; cursor: pointer; }
.mfs-video-wrap iframe { display: block; width: 100%; aspect-ratio: 16/9; border: 0; }
.mfs-video-thumb { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.mfs-video-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.15); transition: background .2s var(--ease-out); }
.mfs-video-wrap:hover .mfs-video-play { background: rgba(0,0,0,0.28); }
.mfs-video-play svg { filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5)); transition: transform .2s var(--ease-out); }
.mfs-video-wrap:hover .mfs-video-play svg { transform: scale(1.1); }

/* ==================== PILLARS ==================== */
.mfs-pillars { padding: 80px 0; background: #fff; }
.mfs-pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.mfs-pillar { background: var(--bg-subtle); border: 1px solid var(--border); border-radius: 14px; padding: 28px 26px; transition: all .25s var(--ease-out); }
.mfs-pillar:hover { border-color: var(--brand-burgundy); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.mfs-pillar-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.mfs-pillar-icon { width: 40px; height: 40px; border-radius: 8px; background: var(--brand-burgundy-tint); color: var(--brand-burgundy); display:flex; align-items:center; justify-content:center; flex: none; }
.mfs-pillar-icon svg { width: 22px; height: 22px; }
.mfs-pillar-title { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--fg); margin: 0; letter-spacing: -.01em; }
.mfs-pillar-body { font-size: 14.5px; line-height: 1.6; color: var(--fg-muted); margin: 0; }
.mfs-pillars-footer { display: flex; justify-content: flex-end; margin-top: 28px; }
.mfs-pillars-more { font: 600 13px var(--font-sans); color: var(--fg-subtle); text-decoration: none; letter-spacing: .03em; display: inline-flex; align-items: center; gap: 5px; transition: color .2s var(--ease-out); }
.mfs-pillars-more::after { content: '→'; display: inline-block; transition: transform .2s; }
.mfs-pillars-more:hover { color: var(--accent); text-decoration: none; }
.mfs-pillars-more:hover::after { transform: translateX(3px); }

/* ==================== EDITIONS ==================== */
.mfs-editions { padding: 80px 0; background: var(--bg-subtle); }
.mfs-editions-layout { display: grid; grid-template-columns: 280px 1fr; grid-template-areas: "desc table" "cta table"; grid-template-rows: auto 1fr; row-gap: 0; column-gap: 48px; align-items: start; }
.mfs-editions-desc { grid-area: desc; display: flex; flex-direction: column; gap: 20px; }
.mfs-editions-layout .mfs-table-wrap { grid-area: table; }
.mfs-editions-cta { grid-area: cta; margin-top: 48px; }
.mfs-eyebrow { font-family: var(--font-sans); font-weight: 600; color: var(--accent); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.mfs-eyebrow.centered { text-align: center; }
.mfs-section-title { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.75rem, 2.8vw, 2.5rem); color: var(--fg); letter-spacing: -.015em; margin: 0; line-height: 1.15; }
.mfs-editions-blurb { font-size: 14px; line-height: 1.6; color: var(--fg-muted); margin: 0; }
.mfs-table-wrap { background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: clip; box-shadow: var(--shadow-sm); }
.mfs-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.mfs-table td { padding: 16px 20px; text-align: center; border-bottom: 1px solid var(--border); white-space: nowrap; vertical-align: top; }
.mfs-table th { padding: 16px 20px; text-align: center; white-space: nowrap; vertical-align: top; }
.mfs-table--wide thead { position: sticky; top: 56px; z-index: 2; will-change: transform; }
.mfs-table thead th { background: var(--navy-050); padding: 12px 20px 6px; vertical-align: bottom; border: 0; }
.mfs-table--wide thead tr:last-child th { box-shadow: 0 2px 6px rgba(0,0,0,0.07); clip-path: inset(0 0 -20px 0); }
.mfs-table thead tr + tr th { padding-top: 4px; padding-bottom: 14px; }
.mfs-table td:nth-child(4), .mfs-table thead tr+tr th:nth-child(4) { padding-right: 8px; }
.mfs-table td:nth-child(5), .mfs-table thead tr+tr th:nth-child(5) { padding-left: 8px; }
.mfs-th { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--fg); letter-spacing: -.01em; }
.mfs-th-pro { display:inline-flex; align-items:center; }
.mfs-th-ce { display: inline-flex; align-items: center; justify-content: center; background: var(--brand-burgundy); color: #fff; font-family: var(--font-brand); font-weight: 700; font-size: 13px; letter-spacing: .04em; height: 22px; padding: 0 6px; border-radius: 2px; }
.mfs-th-sub { font-size: 12px; font-weight: 500; color: var(--fg-muted); margin-top: 0px; letter-spacing: .04em; text-transform: uppercase; }
.mfs-table tbody tr:last-child td, .mfs-table tbody tr:nth-last-child(2) td { border-bottom: 0; }
.mfs-table tbody tr:last-child td { padding-top: 0; }
.mfs-table .feat { font-weight: 500; color: var(--fg); text-align: right; padding-right: 2px; }
.mfs-table .help-col { width: 24px; padding: 13px 8px 0 4px; text-align: center; vertical-align: top; }
.mfs-table td { color: var(--fg-muted); }
.mfs-check { color: var(--fg-muted); font-size: 11px; line-height: 1; }

/* Tooltip */
.mfs-help { display: inline-flex; align-items: center; justify-content: center; width: 15px; height: 15px; border-radius: 9999px; border: 1px solid var(--border-strong); color: var(--fg-subtle); font-size: 10px; font-weight: 600; cursor: pointer; position: relative; vertical-align: middle; transition: color .15s, border-color .15s; outline: none; }
.mfs-help:hover, .mfs-help:focus { color: var(--brand-burgundy); border-color: var(--brand-burgundy); }
.mfs-help-pop { position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: var(--navy-900); color: #fff; font-size: 12px; font-weight: 400; line-height: 1.45; letter-spacing: 0; padding: 8px 12px; border-radius: 6px; width: 240px; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transition: opacity .15s; text-align: left; z-index: 10; white-space: normal; }
.mfs-help:hover .mfs-help-pop, .mfs-help:focus .mfs-help-pop { opacity: 1; }
.mfs-editions-cta { display: flex; gap: 12px; justify-content: center; }
.mfs-table-wrap--narrow { display: none; overflow: visible; background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-sm); }
.mfs-table--narrow { table-layout: fixed; border-collapse: separate; border-spacing: 0; }
.mfs-table--narrow th, .mfs-table--narrow td { white-space: normal; border-top: 1px solid var(--border); border-left: 0; border-bottom: 0; border-right: 0; }
.mfs-table--narrow tbody tr:last-child td { border-bottom: 0; }
.mfs-table--narrow .btn-sm { height: 30px; padding: 0 6px; font-size: 11px; }
.mfs-table--narrow th:nth-child(1), .mfs-table--narrow td:nth-child(1) { padding-right: 2px; }
.mfs-table--narrow th:nth-child(2), .mfs-table--narrow td:nth-child(2) { padding-left: 2px; padding-right: 2px; }
.mfs-table--narrow th:nth-child(3), .mfs-table--narrow td:nth-child(3) { padding-left: 2px; }
.mfs-table--narrow thead { position: sticky; top: 56px; z-index: 2; will-change: transform; }
.mfs-table--narrow thead th { background: var(--navy-050); border-top: 0; box-shadow: 0 2px 6px rgba(0,0,0,0.07); padding-top: 10px; }
.mfs-table--narrow thead th:nth-child(2) { border-left: 1px solid var(--border); }
.mfs-table--narrow thead th:first-child { border-top-left-radius: 13px; }
.mfs-table--narrow thead th:last-child { border-top-right-radius: 13px; }
.mfs-narrow-pro-subs { display: flex; margin-top: 6px; }
.mfs-narrow-pro-subs .mfs-th-sub { flex: 1; text-align: center; }
.mfs-table-wrap--narrow.is-detached .mfs-table--narrow thead th { border-radius: 0; }
.mfs-table--narrow tbody td { background: #fff; }
.mfs-table--narrow tbody tr:last-child td:first-child { border-bottom-left-radius: 13px; }
.mfs-table--narrow tbody tr:last-child td:last-child { border-bottom-right-radius: 13px; }
.mfs-table--narrow .mfs-feat-row td { text-align: center; font-weight: 500; color: var(--fg); border-bottom: 0; padding-bottom: 2px; white-space: normal; }
.mfs-table--narrow .mfs-feat-row .mfs-help { vertical-align: super; position: relative; top: 1px; }
.mfs-table--narrow .mfs-val-row td { border-top: 0; padding-top: 4px; vertical-align: top; }

/* ==================== BLOG ==================== */
.mfs-blog { padding: 80px 0; background: #fff; }
.mfs-section-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 36px; gap: 24px; }
.mfs-link-arrow { color: var(--accent); font-weight: 600; font-size: 14.5px; }
.mfs-link-arrow:hover { text-decoration: none; color: var(--brand-burgundy-deep); }
.mfs-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mfs-blog-grid > *:nth-child(4) { display: none; }
.mfs-blog-card { position: relative; display: block; aspect-ratio: 4/4.4; border-radius: 14px; overflow: hidden; background: #0e1a2b; box-shadow: var(--shadow-sm); transition: all .25s var(--ease-out); text-decoration: none; color: inherit; }
.mfs-blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); text-decoration: none; color: inherit; }
.mfs-blog-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.mfs-blog-card:hover .mfs-blog-img { transform: scale(1.04); }
.mfs-blog-overlay { position: absolute; left: 16px; right: 16px; bottom: 16px; background: rgba(14,26,43,0.55); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.10); border-radius: 12px; padding: 18px 20px; color: #fff; }
.mfs-blog-date { font-size: 14px; color: rgba(255,255,255,.78); margin-bottom: 8px; font-weight: 400; }
.mfs-blog-title { font-family: var(--font-sans); font-weight: 700; font-size: 18px; line-height: 1.3; margin: 0; color: #fff; text-wrap: balance; }

/* ==================== CUSTOMERS MARQUEE ==================== */
.mfs-customers { padding: 80px 0; background: var(--bg-subtle); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.mfs-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); margin-top: 28px; }
.mfs-marquee-track { display: flex; gap: 62px; width: max-content; animation: marquee 36s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }
.mfs-customer { display: flex; align-items: center; flex-shrink: 0; }
.mfs-customer img { height: 30px; width: auto; opacity: .55; transition: opacity .2s; pointer-events: none; }

/* ==================== FOOTER ==================== */
.mfs-footer { background: var(--navy-900); color: rgba(255,255,255,.85); padding: 80px 0 28px; position: relative; overflow: hidden; }
.mfs-footer::before { content:""; position: absolute; bottom: -120px; right: -100px; width: 520px; height: 520px; background: radial-gradient(circle at center, rgba(63,99,150,.20) 0%, transparent 60%); pointer-events: none; }
.mfs-footer-grid { display: grid; grid-template-columns: 220px 1fr 1fr 1fr; gap: 56px; margin-bottom: 50px; position: relative; z-index: 1; }
.mfs-footer-col:first-child { position: relative; }
.mfs-footer-stamp { position: absolute; top: 0; left: 0; width: 100%; height: calc(100% - 8px); object-fit: contain; object-position: left top; }
.mfs-footer-heading { color: var(--navy-300); font-family: var(--font-display); font-weight: 600; font-size: 19px; margin-bottom: 18px; }
.mfs-footer-col a, .mfs-footer-col .mfs-tbd, .mfs-footer-line { display: block; color: rgba(255,255,255,.78); font-size: 14.5px; padding: 7px 0; text-decoration: none; }
.mfs-footer-col a:hover, .mfs-footer-line:hover { color: var(--brand-burgundy-soft); text-decoration: none; }
.mfs-footer-addr { color: rgba(255,255,255,.78); font-size: 14.5px; line-height: 1.55; margin-bottom: 8px; }
@media (min-width: 601px) { .mfs-footer-email-bar { display: none; } }
.mfs-footer-social { display: flex; gap: 24px; justify-content: center; padding: 28px 0; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); position: relative; z-index: 1; }
.mfs-footer-social a { color: rgba(255,255,255,.55); display: inline-flex; padding: 6px; }
.mfs-footer-social a:hover { color: #fff; }
.mfs-footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; flex-wrap: wrap; gap: 16px; position: relative; z-index: 1; }
.mfs-footer-legal { display: flex; gap: 28px; }
.mfs-footer-legal a, .mfs-footer-legal .mfs-tbd { color: rgba(255,255,255,.55); font-size: 13px; text-decoration: none; }
.mfs-footer-legal a:hover { color: #fff; }
.mfs-tbd { opacity: .55; cursor: default; }
.mfs-footer-copyright { color: rgba(255,255,255,.45); font-size: 13px; }

/* ==================== RESPONSIVE ==================== */
@media (orientation: landscape) and (max-height: 500px) {
  .mfs-hero { background: linear-gradient(to bottom, #fbfcfe, #ffffff); }
  .mfs-hero-inner { padding-top: 0; }
  :root { --header-height: 38px; }
  .mfs-header.is-sticky .mfs-header-inner { height: var(--header-height); }
  .mfs-nav { display: none; }
  .mfs-search { display: none; }
  .mfs-hamburger { display: flex; border: none; width: auto; height: 26px; flex-direction: row; align-items: stretch; }
  .mfs-brand { font-size: 18px; gap: 8px; }
  .mfs-brand img { height: 1em; }
  .mfs-hamburger-lines { gap: 4px; padding: 0 0 0 10px; border-left: 1px solid var(--border-strong); }
  .mfs-hamburger-lines span { width: 16px; }
  .mfs-hamburger.is-open .mfs-hamburger-lines span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .mfs-hamburger.is-open .mfs-hamburger-lines span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .mfs-table--wide thead, .mfs-table--narrow thead { top: var(--header-height); }
  .mfs-mobile-drawer { padding-top: 0; }
  /* UC section — landscape phone */
  .uc-section { padding: 10px 0 0; }
  .uc-section-head { margin-bottom: 10px; grid-template-columns: 1fr; }
  .uc-intro { display: none; }
  .uc-title { font-size: 22px; }
  .uc-stage { height: 240px; }
  .uc-stage-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); top: 12px; bottom: 88px; gap: 2px; }
  .uc-name { font-size: 18px; }
  .uc-spotlight { width: 180px; height: 180px; }
  .uc-caption { bottom: 12px; height: auto; padding-top: 10px; }
  .uc-cap-body { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; align-items: end; }
  .uc-caption-tag { margin-bottom: 4px; }
  .uc-caption-title { font-size: 18px; }
  .uc-caption-blurb { grid-column: 2; grid-row: 1 / -1; align-self: end; min-height: 0; }
  .uc-below-stage { margin-top: 14px; }
}
@media (max-width: 960px) {
  .mfs-search-panel { grid-template-columns: 1fr; }
  .uc-section-head { grid-template-columns: 1fr; }
  .uc-section { padding: 64px 0 56px; }
  .uc-stage-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr); }
  .mfs-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .mfs-editions-layout { grid-template-columns: 1fr; grid-template-areas: "desc" "table" "cta"; grid-template-rows: auto; row-gap: 20px; column-gap: 0; }
  .mfs-editions-cta { justify-content: center; margin-top: 16px; }
  .mfs-intro    { padding: 48px 0 56px; }
  .mfs-pillars  { padding: 56px 0; }
  .mfs-editions { padding: 56px 0; }
  .mfs-blog     { padding: 56px 0; }
  .mfs-customers { padding: 56px 0; }
  .mfs-nav { display: none; }
  .mfs-search { display: none; }
  .mfs-hamburger { display: flex; }
}
/* ==================== ADVANTAGES & FEATURES PAGE (Mega type) ==================== */
.look5-page { padding-top: var(--header-height); }

.look-cat--reliability  { --look-cat: #c51329; }
.look-cat--performance  { --look-cat: #1e63a8; }
.look-cat--cost         { --look-cat: #1f8a4c; }
.look-cat--operations   { --look-cat: #c97a09; }
.look-cat--ecosystem    { --look-cat: #6b4ea3; }
.look-fcat--protection  { --look-cat: #c51329; }
.look-fcat--performance { --look-cat: #1e63a8; }
.look-fcat--efficiency  { --look-cat: #1f8a4c; }
.look-fcat--scale       { --look-cat: #c97a09; }

.look-pro { display: inline-flex; align-items: center; font-weight: 700; font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-burgundy); background: var(--brand-burgundy-tint); border-radius: var(--radius-full); padding: 2px 8px; line-height: 1.5; }

.look-filters { display: flex; flex-direction: column; gap: 10px; }
.look-filter-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.look-filter-label { font-weight: 700; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-subtle); min-width: 64px; }
.look-chips { display: inline-flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.look-chip { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-full); font-size: 13px; font-weight: 500; line-height: 1.2; color: var(--fg-muted); cursor: pointer; transition: all .15s var(--ease-out); }
.look-chip:hover { color: var(--fg); border-color: var(--border-strong); background: var(--bg-subtle); }
.look-chip.is-active { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.look-chip-dot { width: 8px; height: 8px; border-radius: 9999px; background: var(--look-cat, var(--brand-burgundy)); display: inline-block; }
.look-chip-star { color: var(--brand-burgundy); font-size: 12px; line-height: 1; }
.look-chip.is-active .look-chip-star { color: var(--brand-burgundy-soft); }
.look-chip-count { font-family: var(--font-mono); font-size: 11px; color: var(--fg-subtle); letter-spacing: .04em; padding-left: 2px; }
.look-chip.is-active .look-chip-count { color: rgba(255,255,255,.6); }
.look-chip-divider { display: inline-block; width: 1px; height: 22px; background: var(--border-strong); margin: 0 4px; }
.look-chips--seg { gap: 0; border: 1px solid var(--border); border-radius: var(--radius-full); padding: 3px; background: var(--bg-subtle); }
.look-chips--seg .look-chip { border: 0; background: transparent; padding: 6px 14px; }
.look-chips--seg .look-chip.is-active { background: var(--navy-900); }

.look5-section { padding: 96px 0; background: #fff; }
.look5-section--feat { background: var(--bg-subtle); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.look5-head { margin-bottom: 56px; max-width: 720px; }
.look5-eyebrow { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-burgundy); margin-bottom: 14px; }
.look5-eyebrow--feat { color: var(--navy-700); }
.look5-title { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.4rem, 4vw, 3.25rem); letter-spacing: -.025em; line-height: 1.05; margin: 0; text-wrap: balance; }
.look5-lead { font-size: 17px; line-height: 1.75; color: var(--fg-muted); margin: 20px 0 0; max-width: 64ch; }
.look5-lead strong { color: var(--fg); font-weight: 600; }

.look5-featured { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-bottom: 72px; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.look5-tile { position: relative; padding: 40px 36px 32px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; display: flex; flex-direction: column; transition: background .25s var(--ease-out); min-height: 360px; }
.look5-tile:hover { background: var(--bg-subtle); }
.look5-tile-num { position: absolute; top: 28px; right: 36px; font-family: var(--font-display); font-weight: 300; font-size: 30px; color: var(--look-cat); letter-spacing: -1px; line-height: 1; }
.look5-tile-name { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--look-cat); margin-bottom: 28px; font-weight: 500; }
.look5-tile-short { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.5rem, 4.5vw, 4rem); line-height: 1.0; letter-spacing: -.03em; color: var(--fg); margin: 0 0 32px; text-wrap: balance; max-width: 18ch; }
.look5-tile-blurb { font-size: 15.5px; line-height: 1.7; color: var(--fg-muted); margin: 0 0 24px; max-width: 50ch; }
.look5-tile-stat { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--look-cat); display: flex; align-items: baseline; gap: 12px; }
.look5-tile-stat-v { font-family: var(--font-display); font-weight: 400; font-size: 24px; color: var(--look-cat); letter-spacing: -.01em; }
.look5-tile-stat-l { font-size: 13px; color: var(--fg-muted); }

.look5-libhead { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; margin-bottom: 28px; }
.look5-libhead--feat { grid-template-columns: 1fr; }
.look5-libtitle { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.3rem, 1.8vw, 1.6rem); margin: 0; letter-spacing: -.005em; color: var(--fg); }

.look5-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.look5-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 860px; }
.look5-card { position: relative; padding: 28px 26px 22px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); display: flex; flex-direction: column; min-height: 260px; transition: background .2s var(--ease-out); }
.look5-card:hover { background: var(--bg-subtle); }
.look5-card-name { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--look-cat); margin-bottom: 14px; font-weight: 500; }
.look5-card-name--feat { font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: -.005em; text-transform: none; color: var(--fg); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.look5-card-short { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.5rem, 2.2vw, 2rem); line-height: 1.1; letter-spacing: -.015em; color: var(--fg); margin: 0 0 16px; text-wrap: balance; }
.look5-card-blurb { font-size: 13.5px; line-height: 1.65; color: var(--fg-muted); margin: 0 0 16px; }
.look5-card-blurb--feat { font-size: 14px; }
.look5-card-foot { margin-top: auto; padding-top: 14px; border-top: 1px dotted var(--border-strong); display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.look5-card-cat { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; color: var(--look-cat); font-weight: 500; }
.look5-card-stat { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--look-cat); }
.look5-card-since { font-family: var(--font-mono); font-size: 10.5px; color: var(--fg-subtle); letter-spacing: .04em; }

@media (max-width: 900px) {
  .mfs-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; }
}
@media (min-width: 601px) and (max-width: 900px) {
  .mfs-blog-grid { grid-template-columns: 1fr 1fr; }
  .mfs-blog-grid > *:nth-child(4) { display: block; }
}
@media (max-width: 600px) {
  :root { --header-height: 54px; }
  .mfs-header.is-sticky .mfs-header-inner { height: 38px; }
  .mfs-brand { font-size: 18px; gap: 8px; }
  .mfs-brand img { height: 1em; }
  .mfs-hamburger { border: none; width: auto; height: 26px; flex-direction: row; align-items: stretch; }
  .mfs-table--narrow thead { top: calc(38px + env(safe-area-inset-top, 0px)); }
  .mfs-hamburger-lines { gap: 4px; padding: 0 0 0 10px; border-left: 1px solid var(--border-strong); }
  .mfs-hamburger-lines span { width: 16px; }
  .mfs-hamburger.is-open .mfs-hamburger-lines span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .mfs-hamburger.is-open .mfs-hamburger-lines span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .container, .container-wide { padding: 0 20px; }
  .mfs-pillars-grid { grid-template-columns: 1fr; }
  .mfs-search-page {
    padding: calc(var(--header-height) + 32px) 0 56px;
  }
  .mfs-search-page-head {
    margin-bottom: 24px;
  }
  .mfs-search-title {
    max-width: none;
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }
  .mfs-search-intro {
    font-size: 15px;
  }
  .mfs-search-panel {
    padding: 12px;
    border-radius: 14px;
  }
  .mfs-search-panel .btn {
    height: 52px;
  }
  .mfs-search-input-wrap {
    min-height: 52px;
    padding: 0 14px;
  }
  .mfs-search-input-wrap input {
    font-size: 16px;
  }
  .mfs-search-result {
    padding: 18px;
    border-radius: 14px;
  }
  .mfs-search-result-title {
    font-size: 24px;
  }
  .mfs-footer-stamp { width: auto; }
  .mfs-table th, .mfs-table td { padding: 12px 10px; font-size: 13px; }
  .mfs-table-wrap--wide { display: none; }
  .mfs-table-wrap--narrow { display: block; }
  .mfs-blog-grid { grid-template-columns: 1fr; }
  .mfs-link-arrow { display: none; }
  .mfs-table--narrow .mfs-feat-row td { position: relative; }
  .mfs-table--narrow .mfs-feat-row .mfs-help { position: static; vertical-align: top; margin-left: 4px; }
  .mfs-table--narrow .mfs-help-pop { position: absolute; left: 3px; right: 3px; width: auto; transform: none; bottom: 24px; top: auto; }
  .mfs-footer-col .mfs-footer-email-inline { display: none; }
  .mfs-footer-email-bar { display: block; grid-column: 1 / -1; color: rgba(255,255,255,.78); font-size: 14.5px; padding: 10px 0; text-decoration: none; text-align: center; margin-top: -20px; }
  .mfs-intro-eyebrow-spacer { margin-bottom: 28px; }
  .mfs-intro-actions { flex-wrap: nowrap; gap: 8px; }
  .mfs-intro-actions .btn { height: 38px; padding: 0 14px; font-size: 13px; }
  .uc-stage { height: 460px; }
  .uc-stage-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 1fr); }
  .uc-name { font-size: 20px; }
  .uc-spotlight { width: 220px; height: 220px; }
  .uc-caption-title { font-size: 24px; }
  .uc-below-stage { margin-top: 20px; }
  .mfs-intro    { padding: 40px 0 48px; }
  .mfs-pillars  { padding: 48px 0; }
  .mfs-editions { padding: 48px 0; }
  .mfs-blog     { padding: 48px 0; }
  .mfs-customers { padding: 48px 0; }
  .mfs-footer   { padding: 48px 0 24px; }
}
@media (max-width: 1080px) {
  .look5-featured { grid-template-columns: 1fr; }
  .look5-grid     { grid-template-columns: repeat(2, 1fr); }
  .look5-libhead  { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .look5-section  { padding: 56px 0; }
  .look5-grid     { grid-template-columns: 1fr; }
  .look5-grid--two { grid-template-columns: 1fr; }
}

/* ==================== TIMELINE (history page) ==================== */
.mfs-timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.mfs-timeline::before { content: ""; position: absolute; left: 110px; top: 6px; bottom: 6px; width: 2px; background: var(--border); }
.mfs-timeline-item { position: relative; display: grid; grid-template-columns: 110px 1fr; column-gap: 36px; padding: 0 0 36px; }
.mfs-timeline-item:last-child { padding-bottom: 0; }
.mfs-timeline-year { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.6rem, 2.4vw, 2rem); line-height: 1; color: var(--brand-burgundy); letter-spacing: -.02em; padding-top: 2px; text-align: right; }
.mfs-timeline-body { position: relative; padding-left: 24px; }
.mfs-timeline-body::before { content: ""; position: absolute; left: -7px; top: 10px; width: 14px; height: 14px; border-radius: 50%; background: var(--brand-burgundy); box-shadow: 0 0 0 4px var(--bg-subtle); }
.mfs-timeline-title { font-family: var(--font-display); font-weight: 600; font-size: 17px; line-height: 1.3; color: var(--fg); margin: 0 0 6px; letter-spacing: -.005em; }
.mfs-timeline-text { font-size: 15px; line-height: 1.7; color: var(--fg-muted); margin: 0; max-width: 60ch; }
.mfs-timeline-text strong { color: var(--fg); font-weight: 600; }
@media (max-width: 720px) {
  .mfs-timeline::before { left: 7px; }
  .mfs-timeline-item { grid-template-columns: 1fr; column-gap: 0; row-gap: 4px; padding-left: 36px; padding-bottom: 28px; }
  .mfs-timeline-year { text-align: left; font-size: 1.3rem; padding-top: 0; }
  .mfs-timeline-body { padding-left: 0; }
  .mfs-timeline-body::before { display: none; }
  .mfs-timeline-item::after { content: ""; position: absolute; left: 0; top: 8px; width: 14px; height: 14px; border-radius: 50%; background: var(--brand-burgundy); box-shadow: 0 0 0 4px var(--bg-subtle); }
}

/* ==================== CONTENT PAGES (shared) ==================== */
.mfs-cpage { padding-top: var(--header-height); }
.mfs-cpage-hero { padding: 80px 0 64px; border-bottom: 1px solid var(--border); }
.mfs-cpage-eyebrow { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-burgundy); margin-bottom: 14px; }
.mfs-cpage-title { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.6rem, 5vw, 4rem); letter-spacing: -.03em; line-height: 1.05; color: var(--fg); margin: 0 0 20px; text-wrap: balance; }
.mfs-cpage-lead { font-size: 18px; line-height: 1.75; color: var(--fg-muted); max-width: 58ch; margin: 0; }
.mfs-cpage-section { padding: 64px 0; border-bottom: 1px solid var(--border); }
.mfs-cpage-section:last-child { border-bottom: none; padding-bottom: 96px; }
.mfs-section-heading { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.8rem, 3vw, 2.5rem); letter-spacing: -.02em; line-height: 1.1; color: var(--fg); margin: 0 0 8px; }
.mfs-section-sub { font-size: 16px; line-height: 1.7; color: var(--fg-muted); max-width: 64ch; margin: 0 0 40px; }

/* Architecture component grid */
.mfs-arch-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--border); }
.mfs-arch-card { padding: 36px 32px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.mfs-arch-card:nth-child(2n) { border-right: none; }
.mfs-arch-card:nth-last-child(-n+2) { border-bottom: none; }
.mfs-arch-icon { font-size: 22px; color: var(--brand-burgundy); margin-bottom: 16px; display: block; }
.mfs-arch-name { font: 600 18px/1.3 var(--font-display); color: var(--fg); margin: 0 0 4px; }
.mfs-arch-role { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-subtle); margin: 0 0 12px; }
.mfs-arch-desc { font-size: 15px; line-height: 1.65; color: var(--fg-muted); margin: 0; }
.mfs-arch-note { background: var(--bg-subtle); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px 24px; margin-top: 32px; font-size: 15px; line-height: 1.65; color: var(--fg-muted); }

/* Code blocks */
.mfs-code { display: block; background: var(--navy-900); color: #c9d1e0; font-family: var(--font-mono); font-size: 13px; line-height: 1.65; border-radius: var(--radius-md); padding: 14px 18px; overflow-x: auto; margin: 6px 0 0; white-space: pre; }
.mfs-code-inline { background: var(--navy-050); color: var(--navy-800); font-family: var(--font-mono); font-size: 13px; border-radius: 4px; padding: 2px 6px; }
.mfs-code-label { font: 600 11px var(--font-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--fg-subtle); display: block; margin: 20px 0 4px; }

/* Download tabs */
.mfs-dl-tabs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 36px; }
.mfs-dl-tab { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border: 1px solid var(--border); border-radius: var(--radius-full); font: 600 13px var(--font-sans); color: var(--fg-muted); background: #fff; cursor: pointer; transition: all .15s var(--ease-out); }
.mfs-dl-tab:hover { color: var(--fg); border-color: var(--border-strong); background: var(--bg-subtle); }
.mfs-dl-tab.is-active { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.mfs-dl-panel { display: none; }
.mfs-dl-panel.is-active { display: block; }
.mfs-dl-step { margin-bottom: 28px; }
.mfs-dl-step-label { font: 600 14px var(--font-sans); color: var(--fg); margin: 0 0 8px; display: flex; align-items: center; gap: 10px; }
.mfs-dl-step-num { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; background: var(--brand-burgundy); color: #fff; border-radius: 50%; font-family: var(--font-mono); font-size: 11px; font-weight: 500; flex-shrink: 0; }
.mfs-dl-step-note { font-size: 13px; color: var(--fg-subtle); margin: 6px 0 0; }
.mfs-dl-ver-group { margin: 10px 0 4px; }
.mfs-dl-ver-label { font: 600 12px var(--font-sans); color: var(--fg-muted); display: block; margin-bottom: 4px; }
.mfs-dl-pkgs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 28px; border-top: 1px solid var(--border); padding-top: 28px; }
.mfs-dl-pkg { padding: 18px 16px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--bg); }
.mfs-dl-pkg-name { font: 600 13px var(--font-sans); color: var(--fg); margin: 0 0 6px; }
.mfs-dl-pkg-cmd { font: 400 12px var(--font-mono); color: var(--brand-burgundy); margin: 0; word-break: break-all; }
.mfs-dl-links { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--border); }
.mfs-dl-panel details { border: 1px solid var(--border); border-radius: var(--radius-md); background: #fff; padding: 14px 18px; margin: 8px 0; }
.mfs-dl-panel details[open] { background: var(--bg); border-color: var(--border-strong); }
.mfs-dl-panel details > summary { cursor: pointer; font: 500 14px var(--font-sans); color: var(--fg); list-style: none; display: flex; align-items: center; gap: 10px; padding: 2px 0; }
.mfs-dl-panel details > summary::-webkit-details-marker { display: none; }
.mfs-dl-panel details > summary::before { content: "+"; font-family: var(--font-mono); font-size: 14px; color: var(--brand-burgundy); width: 14px; display: inline-block; text-align: center; }
.mfs-dl-panel details[open] > summary::before { content: "−"; }
.mfs-dl-panel details > summary:hover { color: var(--brand-burgundy); }
.mfs-dl-panel details > .mfs-code { margin-top: 12px; }

/* Version / support-status table */
.mfs-vtable-wrap { overflow-x: auto; }
.mfs-vtable { width: 100%; border-collapse: collapse; font-size: 14px; }
.mfs-vtable th { padding: 10px 16px; text-align: left; background: var(--bg-subtle); border: 1px solid var(--border); font: 600 11px var(--font-mono); letter-spacing: .06em; text-transform: uppercase; color: var(--fg-subtle); white-space: nowrap; }
.mfs-vtable td { padding: 12px 16px; border: 1px solid var(--border); color: var(--fg-muted); vertical-align: middle; }
.mfs-vtable tr:hover td { background: var(--bg-subtle); }
.mfs-vtable .mfs-vt-active td { color: var(--fg); }
.mfs-vtable .mfs-vt-active td:first-child { color: var(--brand-burgundy); font-weight: 600; }
.mfs-vtable-eol { opacity: .55; }
.mfs-vt-badge { display: inline-block; padding: 2px 8px; border-radius: var(--radius-full); font-family: var(--font-mono); font-size: 10px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }
.mfs-vt-badge--active { background: #dcf5e9; color: #1f8a4c; }
.mfs-vt-badge--eol { background: var(--bg-subtle); color: var(--fg-subtle); }
.mfs-vtable td small { font-size: 12px; color: var(--fg-subtle); white-space: nowrap; }
@media (max-width: 720px) {
  .mfs-vtable, .mfs-vtable thead, .mfs-vtable tbody, .mfs-vtable tr, .mfs-vtable th, .mfs-vtable td { display: block; }
  .mfs-vtable { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
  .mfs-vtable thead { display: none; }
  .mfs-vtable tr { border-bottom: 1px solid var(--border); padding: 12px 0; }
  .mfs-vtable tr:last-child { border-bottom: 0; }
  .mfs-vtable td { border: 0; padding: 6px 16px; display: grid; grid-template-columns: 110px 1fr; column-gap: 12px; font-size: 14px; }
  .mfs-vtable td::before { content: attr(data-label); font: 600 11px var(--font-mono); letter-spacing: .06em; text-transform: uppercase; color: var(--fg-subtle); align-self: center; }
  .mfs-vtable td:first-child { background: var(--bg-subtle); padding: 10px 16px; font: 600 15px var(--font-sans); }
  .mfs-vtable td:first-child::before { display: none; }
  .mfs-vtable td:first-child { grid-template-columns: 1fr; }
  .mfs-vtable .mfs-vt-active td:first-child { color: var(--brand-burgundy); }
  .mfs-vtable tr:hover td { background: transparent; }
  .mfs-vtable .mfs-vt-active:hover td:first-child { background: var(--bg-subtle); }
}

/* Best-practices list */
.mfs-practices { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--border); }
.mfs-practice { display: grid; grid-template-columns: 52px 1fr; gap: 0 16px; padding: 24px 0; border-bottom: 1px solid var(--border); align-items: start; }
.mfs-practice-num { font: 300 2.2rem/1 var(--font-display); color: var(--navy-100); letter-spacing: -.04em; padding-top: 2px; }
.mfs-practice-title { font: 600 15px/1.3 var(--font-sans); color: var(--fg); margin: 4px 0 6px; }
.mfs-practice-text { font-size: 14px; line-height: 1.65; color: var(--fg-muted); margin: 0; }

/* Testimonials */
.mfs-testim-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mfs-testim { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-lg); display: flex; flex-direction: column; background: #fff; }
.mfs-testim-quote { font-size: 15px; line-height: 1.7; color: var(--fg-muted); font-style: italic; flex: 1; margin: 0 0 20px; }
.mfs-testim-mark { font-family: var(--font-display); font-size: 52px; font-weight: 300; color: var(--brand-burgundy); line-height: .8; display: block; margin-bottom: 8px; }
.mfs-testim-foot { border-top: 1px solid var(--border); padding-top: 16px; }
.mfs-testim-name { font: 600 14px var(--font-sans); color: var(--fg); margin: 0 0 2px; }
.mfs-testim-role { font-size: 12.5px; color: var(--fg-subtle); }
.mfs-testim-since { font-family: var(--font-mono); font-size: 10.5px; color: var(--fg-subtle); margin-top: 4px; letter-spacing: .04em; }

/* Testimonials page — per-industry article cards (one per section) */
.mfs-testim-toc { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.mfs-testim-toc a { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border: 1px solid var(--border); border-radius: var(--radius-full); font: 500 13px var(--font-sans); color: var(--fg-muted); background: #fff; text-decoration: none; transition: all .15s var(--ease-out); }
.mfs-testim-toc a:hover { border-color: var(--brand-burgundy); color: var(--brand-burgundy); background: var(--brand-burgundy-tint); }
.mfs-testim-toc a i { color: var(--brand-burgundy); font-size: 12px; }
.mfs-testim-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 40px; max-width: 880px; box-shadow: 0 1px 2px rgba(14,26,43,0.03); scroll-margin-top: calc(var(--header-height) + 24px); }
.mfs-testim-card-head { margin: 0 0 24px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.mfs-testim-card-company { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.2rem, 2vw, 1.5rem); letter-spacing: -.01em; color: var(--fg); margin: 0 0 10px; line-height: 1.25; }
.mfs-testim-card-meta { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 18px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .04em; color: var(--fg-subtle); }
.mfs-testim-card-meta li { display: inline-flex; align-items: center; gap: 6px; }
.mfs-testim-card-meta li strong { color: var(--brand-burgundy); font-weight: 600; }
.mfs-testim-card-meta li i { color: var(--brand-burgundy); font-size: 11px; }
.mfs-testim-card-quote { position: relative; border-left: 3px solid var(--brand-burgundy); margin: 0 0 24px; padding: 4px 0 4px 24px; font-style: italic; }
.mfs-testim-card-quote p { font-size: 15.5px; line-height: 1.75; color: var(--fg-muted); margin: 0 0 14px; }
.mfs-testim-card-quote p:last-of-type { margin-bottom: 0; }
.mfs-testim-card-quote p strong { color: var(--fg); font-weight: 600; font-style: italic; }
.mfs-testim-card-cite { font-style: normal; margin-top: 18px; padding-top: 14px; border-top: 1px dotted var(--border-strong); display: flex; flex-direction: column; gap: 2px; }
.mfs-testim-card-cite cite { font: 600 14px var(--font-sans); color: var(--fg); font-style: normal; }
.mfs-testim-card-cite span { font-size: 12.5px; color: var(--fg-subtle); }
.mfs-testim-card-context { font-size: 14.5px; line-height: 1.7; color: var(--fg-muted); margin: 0; padding: 16px 18px; background: var(--bg-subtle); border-radius: var(--radius-md); border-left: 3px solid var(--border-strong); }
.mfs-testim-card-context strong { color: var(--fg); font-weight: 600; }

/* Contact info */
.mfs-contact-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mfs-contact-item { padding: 32px; border: 1px solid var(--border); border-radius: var(--radius-lg); }
.mfs-contact-icon { font-size: 22px; color: var(--brand-burgundy); margin-bottom: 14px; display: block; }
.mfs-contact-lbl { font: 600 11px var(--font-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--fg-subtle); margin-bottom: 8px; }
.mfs-contact-val { font-size: 16px; line-height: 1.65; color: var(--fg); }
.mfs-contact-val a { color: var(--brand-burgundy); text-decoration: none; }
.mfs-contact-val a:hover { text-decoration: underline; }

/* Pro vs Community edition cards */
.mfs-edition-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 48px; }
.mfs-edition-card { padding: 40px; border: 1px solid var(--border); border-radius: var(--radius-lg); }
.mfs-edition-card--pro { border-color: var(--brand-burgundy); }
.mfs-edition-badge { display: inline-block; font: 600 10px var(--font-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--fg-subtle); padding: 3px 10px; border: 1px solid var(--border); border-radius: var(--radius-full); margin-bottom: 16px; }
.mfs-edition-card--pro .mfs-edition-badge { color: var(--brand-burgundy); border-color: var(--brand-burgundy); background: var(--brand-burgundy-tint); }
.mfs-edition-name { font: 300 2rem/1.1 var(--font-display); letter-spacing: -.02em; color: var(--fg); margin: 0 0 16px; }
.mfs-edition-desc { font-size: 15px; line-height: 1.7; color: var(--fg-muted); margin: 0 0 24px; }
.mfs-edition-feats { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.mfs-edition-feat { font-size: 14px; color: var(--fg-muted); display: flex; align-items: flex-start; gap: 10px; line-height: 1.4; }
.mfs-edition-feat i { color: var(--brand-burgundy); font-size: 12px; margin-top: 3px; flex-shrink: 0; }
.mfs-edition-card--pro .mfs-edition-feat { color: var(--fg); }

/* Comparison feature table */
.mfs-feat-table { width: 100%; border-collapse: collapse; }
.mfs-feat-table th { padding: 12px 20px; text-align: left; background: var(--bg-subtle); border: 1px solid var(--border); font: 600 13px var(--font-sans); color: var(--fg); }
.mfs-feat-table th:not(:first-child) { text-align: center; width: 150px; }
.mfs-feat-table td { padding: 12px 20px; border: 1px solid var(--border); font-size: 14px; color: var(--fg-muted); }
.mfs-feat-table td:not(:first-child) { text-align: center; }
.mfs-feat-table tr:nth-child(even) td { background: var(--bg-subtle); }
.mfs-feat-table .mfs-feat-group th { background: var(--navy-900); color: #fff; padding: 8px 20px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.mfs-feat-yes { color: var(--brand-burgundy); font-size: 17px; }
.mfs-feat-partial { color: var(--fg-subtle); font-size: 13px; }

/* Get-a-quote form */
.mfs-quote-form { max-width: 760px; display: flex; flex-direction: column; gap: 22px; }
.mfs-quote-row { display: grid; gap: 22px; }
.mfs-quote-row--two { grid-template-columns: 1fr 1fr; }
.mfs-quote-field { display: flex; flex-direction: column; gap: 8px; }
.mfs-quote-field label { font: 600 11px var(--font-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--fg-subtle); }
.mfs-quote-field input,
.mfs-quote-field select,
.mfs-quote-field textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg);
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .15s var(--ease-out), box-shadow .15s var(--ease-out);
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}
.mfs-quote-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='none' stroke='%236b7a90' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.mfs-quote-field textarea { resize: vertical; min-height: 120px; }
.mfs-quote-field input:focus,
.mfs-quote-field select:focus,
.mfs-quote-field textarea:focus {
  border-color: var(--brand-burgundy);
  box-shadow: 0 0 0 3px var(--brand-burgundy-tint);
}
.mfs-quote-field input::placeholder,
.mfs-quote-field textarea::placeholder { color: var(--fg-subtle); }
.mfs-quote-req { color: var(--brand-burgundy); font-weight: 700; margin-left: 1px; font-size: .7em; vertical-align: super; }
.mfs-quote-actions { display: flex; align-items: center; gap: 16px; margin-top: 8px; flex-wrap: wrap; }
.mfs-quote-note { font-size: 13px; color: var(--fg-subtle); }

/* Company toggle (slider switch) */
.mfs-switch { display: inline-flex; align-items: center; gap: 12px; cursor: pointer; }
.mfs-switch-input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.mfs-switch-track {
  position: relative; flex: none; width: 44px; height: 24px; border-radius: 999px;
  background: var(--border-strong); transition: background .15s var(--ease-out);
}
.mfs-switch-thumb {
  position: absolute; top: 2px; left: 2px; width: 20px; height: 20px; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow-sm); transition: transform .15s var(--ease-out);
}
.mfs-switch-input:checked + .mfs-switch-track { background: var(--brand-burgundy); }
.mfs-switch-input:checked + .mfs-switch-track .mfs-switch-thumb { transform: translateX(20px); }
.mfs-switch-input:focus-visible + .mfs-switch-track { box-shadow: 0 0 0 3px var(--brand-burgundy-tint); }
.mfs-switch-text { font: 600 11px var(--font-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--fg-subtle); }

/* Field helper text + disabled state */
.mfs-field-hint { margin: 0; font-size: 13px; color: var(--fg-subtle); }
.mfs-quote-field input:disabled {
  background: var(--bg-subtle); color: var(--fg-subtle); cursor: not-allowed;
  border-color: var(--border);
}
.mfs-quote-field.is-disabled label { opacity: .55; }

/* Right-aligned action row */
.mfs-quote-actions--right { justify-content: flex-end; }

/* API-driven public forms (contact / support) */
.mfs-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.mfs-quote-field input.is-invalid,
.mfs-quote-field select.is-invalid,
.mfs-quote-field textarea.is-invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px var(--danger-tint);
}
.mfs-field-error { margin: 0; font-size: 13px; color: var(--danger); }

.mfs-form-status { margin: 4px 0 0; font-size: 14px; padding: 12px 14px; border-radius: 6px; border: 1px solid transparent; }
.mfs-form-status--pending { color: var(--fg-muted); background: var(--bg-subtle); border-color: var(--border); }
.mfs-form-status--error { color: var(--danger); background: var(--danger-tint); border-color: var(--danger); }

.btn.is-loading { opacity: .65; pointer-events: none; }

.mfs-form-success {
  max-width: 760px; display: flex; flex-direction: column; gap: 10px;
  padding: 28px; border-radius: var(--radius-lg);
  background: var(--ok-tint); border: 1px solid var(--ok); outline: none;
}
.mfs-form-success-icon { font-size: 28px; color: var(--ok); line-height: 1; }
.mfs-form-success-title { margin: 0; color: var(--ok); }
.mfs-form-success-text { margin: 0; color: var(--fg-muted); }

/* Best practices ordered list (get-help.html) */
.mfs-bp-list {
  list-style: none;
  counter-reset: bp;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.mfs-bp-item {
  counter-increment: bp;
  position: relative;
  padding: 24px 24px 24px 76px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
}
.mfs-bp-item::before {
  content: counter(bp);
  position: absolute;
  top: 22px;
  left: 22px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 18px;
  color: var(--brand-burgundy);
  border: 1px solid var(--brand-burgundy);
  border-radius: 50%;
  background: var(--bg);
}
.mfs-bp-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  letter-spacing: -.01em;
  color: var(--fg);
}
.mfs-bp-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-muted);
}
.mfs-bp-text code,
.mfs-bp-item code {
  font-family: var(--font-mono);
  font-size: .9em;
  background: var(--navy-050, #f4f6fa);
  padding: 1px 6px;
  border-radius: 4px;
  color: var(--fg);
}

/* Prose (privacy policy) */
.mfs-prose { max-width: 74ch; }
.mfs-prose-meta { font-size: 13px; color: var(--fg-subtle); margin-bottom: 40px; font-family: var(--font-mono); letter-spacing: .04em; }
.mfs-prose h2 { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.3rem, 2.5vw, 1.9rem); letter-spacing: -.01em; color: var(--fg); margin: 48px 0 14px; }
.mfs-prose h2:first-of-type { margin-top: 0; }
.mfs-prose p { font-size: 16px; line-height: 1.75; color: var(--fg-muted); margin: 0 0 16px; }
.mfs-prose ul, .mfs-prose ol { padding-left: 24px; margin: 0 0 16px; }
.mfs-prose li { font-size: 16px; line-height: 1.75; color: var(--fg-muted); margin-bottom: 6px; }
.mfs-prose strong { color: var(--fg); font-weight: 600; }
.mfs-prose blockquote { border-left: 3px solid var(--brand-burgundy); margin: 20px 0; padding: 4px 20px; }
.mfs-prose blockquote p { font-style: italic; }

/* FAQ list (faq.html) */
.mfs-faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 880px; }
.mfs-faq { border: 1px solid var(--border); border-radius: 10px; background: #fff; padding: 16px 22px; transition: border-color .15s var(--ease-out), background .15s var(--ease-out); }
.mfs-faq[open] { border-color: var(--border-strong); background: var(--bg); }
.mfs-faq > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  letter-spacing: -.005em;
  color: var(--fg);
  line-height: 1.4;
}
.mfs-faq > summary::-webkit-details-marker { display: none; }
.mfs-faq > summary::after {
  content: "+";
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--brand-burgundy);
  line-height: 1;
  flex-shrink: 0;
  transition: transform .15s var(--ease-out);
}
.mfs-faq[open] > summary::after { content: "−"; }
.mfs-faq > summary:hover { color: var(--brand-burgundy); }
.mfs-faq > summary > i.fa-solid,
.mfs-faq > summary > i.fa-brands { color: var(--brand-burgundy); font-size: 14px; margin-top: 6px; flex-shrink: 0; }
.mfs-faq-body { padding-top: 12px; margin-top: 10px; border-top: 1px dotted var(--border-strong); }
.mfs-faq-body p { font-size: 15px; line-height: 1.75; color: var(--fg-muted); margin: 0 0 12px; }
.mfs-faq-body p:last-child { margin-bottom: 0; }
.mfs-faq-body code { font-family: var(--font-mono); font-size: .9em; background: var(--navy-050, #f4f6fa); padding: 1px 6px; border-radius: 4px; color: var(--fg); }
.mfs-faq-body strong { color: var(--fg); font-weight: 600; }
.mfs-faq-body a { color: var(--brand-burgundy); text-decoration: underline; text-underline-offset: 3px; }
.mfs-faq-body a:hover { text-decoration: none; }

/* Responsive — content pages */
@media (max-width: 1080px) {
  .mfs-testim-grid { grid-template-columns: repeat(2, 1fr); }
  .mfs-dl-pkgs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .mfs-cpage-hero { padding: 48px 0 40px; }
  .mfs-cpage-section { padding: 48px 0; }
  .mfs-cpage-section:last-child { padding-bottom: 64px; }
  .mfs-arch-grid { grid-template-columns: 1fr; }
  .mfs-arch-card:nth-child(2n) { border-right: 1px solid var(--border); }
  .mfs-arch-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .mfs-arch-card:last-child { border-bottom: none; }
  .mfs-testim-grid { grid-template-columns: 1fr; }
  .mfs-contact-row { grid-template-columns: 1fr; }
  .mfs-edition-grid { grid-template-columns: 1fr; }
  .mfs-dl-pkgs { grid-template-columns: 1fr 1fr; }
  .mfs-quote-row--two { grid-template-columns: 1fr; }
  .mfs-bp-list { grid-template-columns: 1fr; }
  .mfs-faq { padding: 14px 16px; }
  .mfs-faq > summary { font-size: 15px; gap: 10px; }
  .mfs-testim-card { padding: 24px 22px; }
  .mfs-testim-card-quote { padding-left: 16px; }
  .mfs-testim-card-quote p { font-size: 15px; }
}

/* Changelog page — release log groups, filter chips, per-version entries */
.mfs-cl-filters { display: none; flex-wrap: wrap; gap: 6px; margin: 28px 0 12px; }
.mfs-cl-chip { display: inline-flex; align-items: center; padding: 8px 16px; border: 1px solid var(--border); border-radius: var(--radius-full); font: 600 13px var(--font-sans); color: var(--fg-muted); background: #fff; cursor: pointer; transition: all .15s var(--ease-out); }
.mfs-cl-chip:hover { color: var(--fg); border-color: var(--border-strong); background: var(--bg-subtle); }
.mfs-cl-chip.is-active { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.mfs-cl-jump { font-size: 13.5px; line-height: 2; color: var(--fg-muted); margin: 8px 0 0; }
.mfs-cl-jump strong { color: var(--fg); font: 600 11px var(--font-mono); letter-spacing: .1em; text-transform: uppercase; margin-right: 8px; }
.mfs-cl-jump a { display: inline-block; padding: 2px 10px; margin: 0 4px 4px 0; border: 1px solid var(--border); border-radius: var(--radius-full); font-family: var(--font-mono); font-size: 12px; color: var(--fg-muted); text-decoration: none; }
.mfs-cl-jump a:hover { color: var(--brand-burgundy); border-color: var(--brand-burgundy); background: var(--brand-burgundy-tint); }

.mfs-cl-group { border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; margin: 0 0 18px; padding: 0; scroll-margin-top: calc(var(--header-height) + 24px); }
.mfs-cl-group > summary { list-style: none; cursor: pointer; display: flex; align-items: baseline; gap: 14px; padding: 18px 22px; font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--fg); border-radius: var(--radius-lg); position: relative; }
.mfs-cl-group > summary::-webkit-details-marker { display: none; }
.mfs-cl-group > summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-family: var(--font-display); font-weight: 300; font-size: 26px; color: var(--brand-burgundy); line-height: 1; }
.mfs-cl-group[open] > summary::after { content: "−"; }
.mfs-cl-group > summary:hover { color: var(--brand-burgundy); }
.mfs-cl-group .mfs-cl-series { font-family: var(--font-mono); font-weight: 600; color: var(--brand-burgundy); }
.mfs-cl-group .mfs-cl-series-note { font: 400 13px var(--font-sans); color: var(--fg-subtle); letter-spacing: 0; }
.mfs-cl-group[open] > summary { border-bottom: 1px solid var(--border); border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.mfs-cl-group.is-cl-empty { display: none; }

.mfs-cl-entry { padding: 18px 22px; border-bottom: 1px dotted var(--border-strong); }
.mfs-cl-entry:last-child { border-bottom: 0; }
.mfs-cl-entry.is-cl-hidden { display: none; }
.mfs-cl-bullets li.is-cl-hidden { display: none; }
.mfs-cl-entry--milestone { background: var(--brand-burgundy-tint); }
.mfs-cl-entry--milestone .mfs-cl-ver code { color: var(--brand-burgundy); }

.mfs-cl-head { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px 16px; margin: 0 0 10px; scroll-margin-top: calc(var(--header-height) + 24px); }
.mfs-cl-ver { margin: 0; font: 600 16px var(--font-sans); line-height: 1; }
.mfs-cl-ver code { font-family: var(--font-mono); font-weight: 600; font-size: 15px; background: var(--navy-050, #f4f6fa); color: var(--navy-900); padding: 3px 10px; border-radius: var(--radius-md); letter-spacing: -.01em; }
.mfs-cl-date { font-family: var(--font-mono); font-size: 12px; color: var(--fg-subtle); letter-spacing: .04em; }

.mfs-cl-bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.mfs-cl-bullets li { font-size: 14.5px; line-height: 1.7; color: var(--fg-muted); padding-left: 0; }
.mfs-cl-bullets code { font-family: var(--font-mono); font-size: .9em; background: var(--navy-050, #f4f6fa); padding: 1px 5px; border-radius: 4px; color: var(--fg); }
.mfs-cl-tag { display: inline-block; font: 600 10.5px var(--font-mono); letter-spacing: .04em; text-transform: lowercase; color: var(--brand-burgundy); background: var(--brand-burgundy-tint); padding: 1px 7px; border-radius: var(--radius-full); margin-right: 8px; vertical-align: 1px; }

@media (max-width: 720px) {
  .mfs-cl-group > summary { padding: 14px 16px; font-size: 17px; flex-wrap: wrap; gap: 6px 12px; }
  .mfs-cl-group > summary::after { right: 16px; }
  .mfs-cl-entry { padding: 14px 16px; }
  .mfs-cl-bullets li { font-size: 14px; }
}

/* ==================== BLOG POST BODY ==================== */
article.look5-section .container { max-width: 840px; }
article.look5-section .look5-title { text-wrap: pretty; }
article.look5-section .container .look5-lead { margin-top: 32px; border-left: 3px solid var(--brand-burgundy); padding-left: 18px; }

article.look5-section .container h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  letter-spacing: -.015em;
  line-height: 1.25;
  color: var(--fg);
  margin: 48px 0 14px;
}
article.look5-section .container h5 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  letter-spacing: -.01em;
  line-height: 1.35;
  color: var(--fg);
  margin: 32px 0 10px;
}
article.look5-section .container .look5-head + h4,
article.look5-section .container .look5-head + h5 { margin-top: 0; }

article.look5-section .container p:not(.look5-lead) {
  font-size: 16px;
  line-height: 1.78;
  color: var(--fg-muted);
  margin: 0 0 14px;
}
article.look5-section .container p:last-child { margin-bottom: 0; }
article.look5-section .container p strong { color: var(--fg); font-weight: 600; }
article.look5-section .container p em { font-style: italic; }
article.look5-section .container p a,
article.look5-section .container li a { color: var(--brand-burgundy); text-decoration: underline; text-underline-offset: 3px; }
article.look5-section .container p a:hover,
article.look5-section .container li a:hover { color: var(--brand-burgundy-deep); text-decoration: none; }

article.look5-section .container ul,
article.look5-section .container ol { padding-left: 24px; margin: 0 0 18px; }
article.look5-section .container li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--fg-muted);
  margin-bottom: 6px;
}
article.look5-section .container li strong { color: var(--fg); font-weight: 600; }

article.look5-section .container pre {
  background: var(--navy-900);
  color: #c9d1e0;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.65;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  overflow-x: auto;
  margin: 6px 0 20px;
  white-space: pre;
}
article.look5-section .container pre code {
  background: none;
  padding: 0;
  font-size: inherit;
  color: inherit;
  border-radius: 0;
}
article.look5-section .container code {
  background: var(--navy-050);
  color: var(--navy-800);
  font-family: var(--font-mono);
  font-size: .875em;
  border-radius: 4px;
  padding: 2px 6px;
}

article.look5-section .container blockquote {
  border-left: 3px solid var(--brand-burgundy);
  background: var(--bg-subtle);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  padding: 14px 20px;
}
article.look5-section .container blockquote p { font-style: italic; color: var(--fg); margin: 0; }
article.look5-section .container blockquote cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-size: 14px;
  color: var(--fg-subtle);
}

article.look5-section .container figure {
  margin: 0 0 36px;
}
article.look5-section .container figure img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
}
article.look5-section .container figcaption {
  font-size: 13px;
  color: var(--fg-subtle);
  font-family: var(--font-mono);
  margin-top: 8px;
}
article.look5-section .container img:not(figure img) {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

article.look5-section .container table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 32px;
  font-size: 14px;
  display: block;
  overflow-x: auto;
}
article.look5-section .container th {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--fg-subtle);
  background: var(--bg-subtle);
  padding: 10px 14px;
  border-bottom: 2px solid var(--border-strong);
  text-align: left;
  white-space: nowrap;
}
article.look5-section .container td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 14px;
}
article.look5-section .container tr:last-child td { border-bottom: none; }

@media (max-width: 720px) {
  article.look5-section .container h4 { margin-top: 36px; }
  article.look5-section .container h5 { margin-top: 24px; }
}
