/* ==========================================================================
   M-II Operations — Site Stylesheet
   Brand: Navy #0F1A2C / #16263F · Cyan #2F8FB3 · Off-white #F4F6F9
   Type: Playfair Display (display) · Inter (body)
   ========================================================================== */

/* ----- Tokens ----- */
:root {
  /* Color */
  --navy-900: #0F1A2C;
  --navy-800: #16263F;
  --navy-700: #1F3552;
  --cyan-500: #2F8FB3;
  --cyan-400: #4FA8C8;
  --cyan-300: #7FC1DA;
  --off-white: #F4F6F9;
  --white: #FFFFFF;
  --ink-900: #0F1A2C;
  --ink-700: #2C3849;
  --ink-500: #5A6679;
  --ink-300: #A0A8B5;
  --hairline: rgba(15, 26, 44, 0.10);
  --hairline-dark: rgba(255, 255, 255, 0.12);

  /* Type */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-eyebrow: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;         /* 14px */
  --text-base: 1rem;           /* 16px */
  --text-lg: 1.125rem;         /* 18px */
  --text-xl: clamp(1.25rem, 1.5vw, 1.5rem);     /* 20-24 */
  --text-2xl: clamp(1.5rem, 2.2vw, 2rem);       /* 24-32 */
  --text-3xl: clamp(1.875rem, 3.2vw, 2.75rem);  /* 30-44 */
  --text-hero: clamp(2.5rem, 5.5vw, 4.5rem);    /* 40-72 */

  /* Space */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --section-y: clamp(4rem, 8vw, 7rem);
  --container: 1200px;
  --container-narrow: 820px;

  /* Radii & shadow */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(15, 26, 44, 0.06), 0 1px 3px rgba(15, 26, 44, 0.04);
  --shadow-md: 0 4px 8px rgba(15, 26, 44, 0.08), 0 8px 24px rgba(15, 26, 44, 0.06);
  --shadow-lg: 0 12px 28px rgba(15, 26, 44, 0.12), 0 24px 64px rgba(15, 26, 44, 0.10);
}

/* ----- Reset / base ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0;
  color: var(--ink-900);
}
p { margin: 0; }

/* Selection */
::selection { background: var(--cyan-500); color: var(--white); }

/* Container */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-6); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--space-6); }

/* Eyebrow text — small all-caps cyan */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-500);
}
.eyebrow--on-dark { color: var(--cyan-300); }

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--hairline);
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  max-width: var(--container);
  margin: 0 auto;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.nav__brand svg { display: block; flex-shrink: 0; }
.nav__brand-logo {
  display: block;
  flex-shrink: 0;
  height: 56px;
  width: auto;
  object-fit: contain;
}
.nav__brand-text { line-height: 1; }
.nav__brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-top: 2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-700);
  transition: color 0.2s ease;
}
.nav__links a:hover { color: var(--cyan-500); }

/* ----- Animated dropdown nav ----- */
.nav__item--has-dd { position: relative; }
.nav__top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav__caret {
  transition: transform 0.22s ease;
  margin-top: 1px;
}
.nav__dd {
  position: absolute;
  top: calc(100% + 14px);
  left: -16px;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 40px rgba(15, 26, 44, 0.12), 0 2px 6px rgba(15, 26, 44, 0.06);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
  z-index: 100;
}
.nav__dd--wide { min-width: 380px; }
.nav__dd::before {
  /* invisible bridge so the menu doesn't close while the cursor crosses the gap */
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav__dd ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__dd a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--ink-700);
  line-height: 1.4;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.nav__dd a:hover {
  background: var(--off-white);
  color: var(--cyan-500);
  transform: translateX(2px);
}
.dd__title {
  display: block;
  font-weight: 600;
  color: var(--ink-900);
}
.nav__dd a:hover .dd__title { color: var(--cyan-500); }
.dd__sub {
  display: block;
  font-size: 12px;
  color: var(--ink-500);
  margin-top: 2px;
  letter-spacing: 0.02em;
}
.nav__dd-divider {
  height: 1px;
  background: var(--hairline);
  margin: 6px 8px;
}
.nav__dd-all {
  font-weight: 600;
  color: var(--cyan-500) !important;
  font-size: 13px !important;
}
.nav__dd-all:hover { color: var(--cyan-500) !important; }

/* Open state — desktop hover + focus-within + JS-driven click */
@media (min-width: 901px) {
  .nav__item--has-dd:hover > .nav__dd,
  .nav__item--has-dd:focus-within > .nav__dd,
  .nav__item--has-dd.is-open > .nav__dd {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s;
  }
  .nav__item--has-dd:hover > .nav__top .nav__caret,
  .nav__item--has-dd:focus-within > .nav__top .nav__caret,
  .nav__item--has-dd.is-open > .nav__top .nav__caret {
    transform: rotate(180deg);
  }
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  background: var(--cyan-500);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: background 0.2s ease, transform 0.15s ease;
}
.nav__cta:hover { background: #267A99; transform: translateY(-1px); color: var(--white) !important; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  padding: var(--space-2);
  color: var(--ink-900);
}
.nav__toggle svg { display: block; width: 24px; height: 24px; }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__links.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    padding: var(--space-4) var(--space-6) var(--space-6);
    gap: var(--space-4);
    border-bottom: 1px solid var(--hairline);
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .nav__links.is-open .nav__cta { align-self: flex-start; }

  /* Mobile: dropdowns become inline accordions */
  .nav__item--has-dd { width: 100%; }
  .nav__top { width: 100%; justify-content: space-between; }
  .nav__dd {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--cyan-500);
    border-radius: 0;
    margin: 6px 0 4px 8px;
    padding: 4px 0 4px 10px;
    min-width: 0;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    transition: opacity 0.25s ease, max-height 0.25s ease, visibility 0s linear 0.25s;
  }
  .nav__item--has-dd.is-open > .nav__dd {
    opacity: 1;
    visibility: visible;
    max-height: 600px;
    transition: opacity 0.25s ease, max-height 0.3s ease, visibility 0s linear 0s;
  }
  .nav__item--has-dd.is-open > .nav__top .nav__caret {
    transform: rotate(180deg);
  }
  .nav__dd a { padding: 8px 12px; }
  .nav__dd--wide { min-width: 0; }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
  text-align: center;
}
.btn--primary {
  background: var(--cyan-500);
  color: var(--white);
  border-color: var(--cyan-500);
}
.btn--primary:hover { background: #267A99; border-color: #267A99; color: var(--white); transform: translateY(-2px); }

.btn--secondary {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--ink-900);
}
.btn--secondary:hover { background: var(--ink-900); color: var(--white); transform: translateY(-2px); }

.btn--secondary-on-dark {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--secondary-on-dark:hover { background: var(--white); color: var(--ink-900); transform: translateY(-2px); }

.btn--white {
  background: var(--white);
  color: var(--ink-900);
  border-color: var(--white);
}
.btn--white:hover { background: var(--off-white); transform: translateY(-2px); }

.btn--tertiary {
  background: transparent;
  color: var(--cyan-500);
  border: none;
  padding: 8px 0;
  font-weight: 600;
}
.btn--tertiary::after {
  content: ' →';
  transition: transform 0.2s ease;
  display: inline-block;
}
.btn--tertiary:hover::after { transform: translateX(4px); }

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
  padding: var(--space-24) 0 var(--space-20);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 26, 44, 0.55) 0%, rgba(15, 26, 44, 0.85) 70%, rgba(15, 26, 44, 0.95) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.hero__eyebrow {
  color: var(--cyan-300);
  margin-bottom: var(--space-5);
}
.hero__h1 {
  font-size: var(--text-hero);
  font-weight: 500;
  color: var(--white);
  line-height: 1.04;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}
.hero__tagline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--white);
  line-height: 1.2;
  margin: var(--space-6) 0 var(--space-8);
}
.hero__tagline .dot { color: var(--cyan-400); }
.hero__subhead {
  font-size: var(--text-lg);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 720px;
  margin: 0 auto var(--space-12);
}
.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  margin-top: var(--space-8);
}
.hero__trust {
  margin-top: var(--space-8);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
}

/* Method strip — Monitor / Interpret / Intervene */
.method-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin: var(--space-12) 0 0;
  text-align: left;
  padding-top: var(--space-10);
  border-top: 1px solid var(--hairline-dark);
}
.method-strip__item { padding: 0; }
.method-strip__num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--cyan-400);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-3);
}
.method-strip__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-3);
}
.method-strip__body {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}
@media (max-width: 760px) {
  .method-strip { grid-template-columns: 1fr; gap: var(--space-8); }
}

/* ----- Section base ----- */
.section { padding: var(--section-y) 0; }
.section--dark { background: var(--navy-900); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark-accent { background: var(--navy-800); color: var(--white); }
.section--dark-accent h2, .section--dark-accent h3 { color: var(--white); }
.section--light { background: var(--white); }
.section--off-white { background: var(--off-white); }

.section__header { text-align: center; max-width: 720px; margin: 0 auto var(--space-12); }
.section__header.left { text-align: left; margin-left: 0; }
.section__title {
  font-size: var(--text-3xl);
  margin: var(--space-3) 0 var(--space-5);
  font-weight: 500;
}
.section__lede {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--ink-700);
}
.section--dark .section__lede, .section--dark-accent .section__lede { color: rgba(255, 255, 255, 0.78); }

/* ----- Offering cards (How M-II Works) ----- */
.offering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}
.offering-card {
  padding: var(--space-8);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--cyan-500);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.offering-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.offering-card__num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--cyan-500);
  font-weight: 500;
  margin-bottom: var(--space-3);
}
.offering-card__title {
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--space-4);
  color: var(--ink-900);
}
.offering-card__body {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink-700);
  margin-bottom: var(--space-6);
  flex-grow: 1;
}
@media (max-width: 900px) {
  .offering-grid { grid-template-columns: 1fr; gap: var(--space-6); }
}

/* Positioning callout */
.positioning-callout {
  max-width: 820px;
  margin: var(--space-12) auto 0;
  padding: var(--space-8) 0;
  border-top: 1px solid var(--cyan-500);
  border-bottom: 1px solid var(--cyan-500);
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  line-height: 1.45;
  color: var(--ink-700);
  font-weight: 400;
}

/* Proof strip */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-16);
  padding-top: var(--space-8);
  border-top: 1px solid var(--cyan-500);
}
.proof-strip__item { text-align: center; }
.proof-strip__num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--cyan-500);
  font-weight: 500;
  margin-bottom: var(--space-2);
}
.proof-strip__label {
  font-size: var(--text-sm);
  color: var(--ink-700);
  line-height: 1.5;
}
@media (max-width: 760px) {
  .proof-strip { grid-template-columns: repeat(2, 1fr); gap: var(--space-8); }
}

/* ----- Two-column with image ----- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.split--reverse { grid-template-columns: 1fr 1.1fr; }
.split--reverse .split__media { order: -1; }
.split__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.split__title {
  font-size: var(--text-3xl);
  font-weight: 500;
  margin: var(--space-3) 0 var(--space-5);
}
.split__body {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--ink-700);
  margin-bottom: var(--space-6);
}
.section--dark .split__body, .section--dark-accent .split__body { color: rgba(255, 255, 255, 0.82); }
@media (max-width: 900px) {
  .split, .split--reverse { grid-template-columns: 1fr; gap: var(--space-8); }
  .split--reverse .split__media { order: 0; }
}

/* ----- Feature grid (3 col x 3 rows) ----- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6) var(--space-8);
  margin-top: var(--space-12);
}
.feature-grid__item {
  padding-top: var(--space-5);
  border-top: 2px solid var(--cyan-500);
}
.feature-grid__shot {
  margin-bottom: var(--space-4);
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy-800);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06);
  aspect-ratio: 16 / 9;
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.feature-grid__shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top left;
}
.feature-grid__item:hover .feature-grid__shot {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(47, 143, 179, 0.5);
}
.section--light .feature-grid__shot, .section--off-white .feature-grid__shot {
  background: var(--off-white);
  box-shadow: 0 4px 14px rgba(15, 26, 44, 0.10), 0 0 0 1px rgba(15, 26, 44, 0.06);
}
.feature-grid__title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: inherit;
}
.section--dark .feature-grid__title { color: var(--white); }
.feature-grid__body {
  font-size: var(--text-sm);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
}
.section--light .feature-grid__body, .section--off-white .feature-grid__body { color: var(--ink-700); }
@media (max-width: 760px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ----- Pricing cards ----- */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  max-width: 820px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: var(--space-10) var(--space-8);
  text-align: center;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pricing-card--featured {
  border-top: 4px solid var(--cyan-500);
  box-shadow: var(--shadow-md);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card__tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cyan-500);
  color: var(--white);
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.pricing-card__label {
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
  margin-bottom: var(--space-6);
}
.pricing-card__price {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 500;
  color: var(--ink-900);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.pricing-card__unit {
  font-size: var(--text-sm);
  color: var(--ink-500);
  margin-bottom: var(--space-2);
}
.pricing-card__save {
  font-size: var(--text-sm);
  color: var(--cyan-500);
  font-weight: 600;
  margin-bottom: var(--space-6);
}
.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0 var(--space-8);
  text-align: left;
  display: inline-block;
}
.pricing-card__features li {
  font-size: var(--text-sm);
  color: var(--ink-700);
  padding: 6px 0 6px 26px;
  position: relative;
  line-height: 1.5;
}
.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--cyan-500);
  border-bottom: 2px solid var(--cyan-500);
  transform: rotate(-45deg);
}
.pricing-card .btn { width: 100%; }
@media (max-width: 760px) {
  .pricing-cards { grid-template-columns: 1fr; }
}

/* ----- Role-based action item cards ----- */
.role-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-8);
}
.role-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--cyan-500);
  border-radius: var(--radius-md);
  padding: var(--space-6);
}
.role-card__badge {
  display: inline-block;
  background: var(--cyan-500);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: var(--space-4);
}
.role-card__title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
  line-height: 1.35;
}
.role-card__body {
  font-size: var(--text-sm);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-5);
}
.role-card__cta {
  font-size: var(--text-sm);
  color: var(--cyan-300);
  font-weight: 600;
}
.role-card__cta::after { content: ' →'; }
@media (max-width: 900px) {
  .role-cards { grid-template-columns: 1fr; gap: var(--space-5); }
}

/* Two-path CTA */
.two-path {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  max-width: 920px;
  margin: var(--space-12) auto 0;
}
.two-path__card {
  padding: var(--space-8);
  border-radius: var(--radius-md);
  text-align: center;
}
.two-path__card--filled {
  background: var(--cyan-500);
  color: var(--white);
}
.two-path__card--outline {
  border: 2px solid var(--cyan-500);
  color: var(--white);
}
.two-path__label {
  font-size: var(--text-eyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: var(--space-3);
  opacity: 0.85;
}
.two-path__heading {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--space-3);
  color: inherit;
}
.two-path__body {
  font-size: var(--text-sm);
  line-height: 1.55;
  margin-bottom: var(--space-6);
  opacity: 0.92;
}
@media (max-width: 760px) {
  .two-path { grid-template-columns: 1fr; }
}

/* ----- Footer ----- */
.site-footer {
  background: var(--off-white);
  color: var(--ink-700);
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid rgba(15, 26, 44, 0.08);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}
.footer__brand-line {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  line-height: 1.6;
  max-width: 360px;
  color: var(--ink-700);
}
.footer__heading {
  font-family: var(--font-body);
  font-size: var(--text-eyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: var(--space-5);
}
.footer__links { list-style: none; padding: 0; margin: 0; }
.footer__links li { margin-bottom: var(--space-3); }
.footer__links a { font-size: var(--text-sm); color: var(--ink-700); transition: color 0.2s ease; }
.footer__links a:hover { color: var(--cyan-500); }
.footer__bottom {
  padding-top: var(--space-8);
  border-top: 1px solid rgba(15, 26, 44, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  flex-wrap: wrap;
  gap: var(--space-4);
  color: var(--ink-500);
}
@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-8); }
}

/* ----- Page hero (interior pages) ----- */
.page-hero {
  background: var(--navy-900);
  color: var(--white);
  padding: var(--space-20) 0 var(--space-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 26, 44, 0.7), rgba(15, 26, 44, 0.95));
}
.page-hero__inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; padding: 0 var(--space-6); }
.page-hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  color: var(--white);
  margin: var(--space-4) 0;
  font-weight: 500;
}
.page-hero p {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}
.page-hero__anchors {
  display: flex;
  gap: var(--space-6);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-8);
}
.page-hero__anchors a {
  font-size: var(--text-sm);
  color: var(--cyan-300);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.page-hero__anchors a:hover { color: var(--white); }

/* Feature checklist (Services) */
.checklist {
  list-style: none;
  padding: 0;
  margin: var(--space-6) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2) var(--space-6);
}
.checklist li {
  padding: 6px 0 6px 28px;
  position: relative;
  font-size: var(--text-base);
  color: var(--ink-700);
  line-height: 1.5;
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--cyan-500);
  border-bottom: 2px solid var(--cyan-500);
  transform: rotate(-45deg);
}
@media (max-width: 600px) { .checklist { grid-template-columns: 1fr; } }

.price-callout {
  padding: var(--space-4) var(--space-5);
  background: var(--off-white);
  border-left: 3px solid var(--cyan-500);
  border-radius: var(--radius-sm);
  margin: var(--space-6) 0;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--ink-900);
}

.button-row { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-4); }

/* HR/Training two-column on dark */
.dual-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  margin-top: var(--space-10);
}
.dual-block__col {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-8);
}
.dual-block__icon {
  width: 36px;
  height: 36px;
  margin-bottom: var(--space-4);
  color: var(--cyan-400);
}
.dual-block__heading {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}
.dual-block__intro {
  font-size: var(--text-base);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: var(--space-5);
}
.dual-block__list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-5);
}
.dual-block__list li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}
.dual-block__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--cyan-400);
  border-bottom: 2px solid var(--cyan-400);
  transform: rotate(-45deg);
}
.dual-block__close {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .dual-block { grid-template-columns: 1fr; gap: var(--space-6); }
}

/* Operating principles 2x3 grid */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.principle-card {
  padding: var(--space-6);
  background: var(--off-white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--cyan-500);
}
.principle-card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  margin-bottom: var(--space-2);
}
.principle-card__body {
  font-size: var(--text-sm);
  line-height: 1.55;
  color: var(--ink-700);
}
@media (max-width: 900px) { .principles-grid { grid-template-columns: 1fr; } }

/* Phase tiers (Services Fractional COO) */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.tier-card {
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
}
.tier-card__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--white);
  margin-bottom: var(--space-3);
}
.tier-card__body {
  font-size: var(--text-sm);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}
@media (max-width: 900px) { .tier-grid { grid-template-columns: 1fr; } }

/* Inline example chips */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin: var(--space-6) 0;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: 8px 14px;
  background: rgba(47, 143, 179, 0.12);
  border: 1px solid rgba(47, 143, 179, 0.35);
  border-radius: 999px;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.92);
}
.chip__role {
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cyan-300);
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-12);
}
.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.form__label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: var(--space-2);
}
.form__input, .form__select, .form__textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--ink-900);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none;
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 3px rgba(47, 143, 179, 0.15);
}
.form__textarea { resize: vertical; min-height: 120px; }
.form__note { font-size: var(--text-sm); color: var(--ink-500); }

.contact-side h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--space-5);
}
.contact-side dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: var(--space-4);
  row-gap: var(--space-3);
  font-size: var(--text-base);
}
.contact-side dt {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-500);
  align-self: center;
}
.contact-side dd { margin: 0; color: var(--ink-700); line-height: 1.5; }
.contact-side img { margin-top: var(--space-6); border-radius: var(--radius-md); }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-8); }
}

/* Founder section */
.founder {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--space-12);
  align-items: start;
}
.founder--no-photo {
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
}
.founder__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.founder__name {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 500;
  margin-bottom: var(--space-2);
}
.founder__role {
  color: var(--cyan-500);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-6);
}
.founder__body p { font-size: var(--text-base); line-height: 1.65; color: var(--ink-700); margin-bottom: var(--space-4); }

/* Founder note (pull quote inside founder bio) */
.founder__note {
  margin: var(--space-8) 0 0;
  padding: var(--space-6) var(--space-7);
  background: var(--off-white);
  border-left: 3px solid var(--cyan-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.founder__note-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-500);
  margin-bottom: var(--space-4);
}
.founder__note blockquote {
  margin: 0;
  padding: 0;
  border: none;
}
.founder__note blockquote p {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1.55;
  color: var(--ink-900);
  font-weight: 400;
  margin-bottom: var(--space-4);
  font-style: italic;
}
.founder__note blockquote p:last-child { margin-bottom: 0; }
.founder__note figcaption {
  margin-top: var(--space-5);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink-700);
  letter-spacing: 0.02em;
}
@media (max-width: 900px) { .founder { grid-template-columns: 1fr; gap: var(--space-6); } }
@media (max-width: 600px) {
  .founder__note { padding: var(--space-5) var(--space-5); }
  .founder__note blockquote p { font-size: var(--text-base); }
}

/* Article grid */
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-10);
  margin-top: var(--space-8);
}
.article-card {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.article-card__media {
  aspect-ratio: 16 / 9;
  background: var(--navy-800);
  position: relative;
  overflow: hidden;
}
.article-card__media img { width: 100%; height: 100%; object-fit: cover; }
.article-card__body { padding: var(--space-6); display: flex; flex-direction: column; flex-grow: 1; }
.article-card__meta { font-size: var(--text-eyebrow); color: var(--ink-500); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: var(--space-3); }
.article-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--space-3);
  line-height: 1.25;
}
.article-card__excerpt { font-size: var(--text-sm); color: var(--ink-700); line-height: 1.55; margin-bottom: var(--space-5); flex-grow: 1; }
.article-card__read {
  font-size: var(--text-sm);
  color: var(--cyan-500);
  font-weight: 600;
}
.article-card__read::after { content: ' →'; transition: transform 0.2s ease; display: inline-block; }
.article-card:hover .article-card__read::after { transform: translateX(4px); }
@media (max-width: 760px) { .article-grid { grid-template-columns: 1fr; gap: var(--space-6); } }

/* Article page */
.article-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: var(--text-lg);
  line-height: 1.75;
  color: var(--ink-700);
}
.article-content h2 {
  font-size: var(--text-2xl);
  font-weight: 500;
  margin: var(--space-12) 0 var(--space-4);
  color: var(--ink-900);
}
.article-content h3 {
  font-size: var(--text-xl);
  font-weight: 500;
  margin: var(--space-8) 0 var(--space-3);
  color: var(--ink-900);
}
.article-content p { margin-bottom: var(--space-5); }
.article-content ul, .article-content ol { padding-left: var(--space-6); margin-bottom: var(--space-5); }
.article-content li { margin-bottom: var(--space-2); }
.article-content blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  line-height: 1.4;
  color: var(--ink-900);
  border-left: 3px solid var(--cyan-500);
  padding-left: var(--space-6);
  margin: var(--space-8) 0;
}

/* Welcome / utility pages */
.utility-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-20) var(--space-6);
}
.utility-page__inner { max-width: 560px; }
.utility-page h1 {
  font-size: var(--text-3xl);
  font-weight: 500;
  margin: var(--space-4) 0;
}
.utility-page p { color: var(--ink-700); font-size: var(--text-lg); line-height: 1.6; margin-bottom: var(--space-6); }

/* Iframe wrapper */
.iframe-wrap {
  background: var(--white);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.iframe-wrap iframe {
  width: 100%;
  border: none;
  display: block;
}

/* Final CTA section */
.final-cta {
  text-align: center;
  padding: var(--space-20) var(--space-6);
  background: var(--navy-900);
  color: var(--white);
}
.final-cta h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-5);
  color: var(--white);
}
.final-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-lg);
  max-width: 560px;
  margin: 0 auto var(--space-8);
  line-height: 1.6;
}
.final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--cyan-500);
  color: var(--white);
  padding: 10px 14px;
  z-index: 100;
}
.skip-link:focus { left: 8px; top: 8px; }

/* Audit value-comparison grid — stack on mobile */
@media (max-width: 640px) {
  .compare-grid {
    grid-template-columns: 1fr !important;
  }
  .compare-grid > div:first-child {
    border-right: none !important;
    border-bottom: 1px solid rgba(15,26,44,0.12);
  }
}

/* ----- Solutions page: solution-block layout ----- */
.solution-block {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--space-12);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.solution-block--reverse { grid-template-columns: 1fr 320px; }
.solution-block--reverse .solution-block__icon-wrap { order: 2; }

.solution-block__icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  position: sticky;
  top: var(--space-8);
}
.solution-block__icon {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 26, 44, 0.25), 0 0 0 1px rgba(15, 26, 44, 0.08);
  display: block;
}
.section--dark .solution-block__icon {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.solution-block__text { min-width: 0; }
.solution-block__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin: var(--space-3) 0 var(--space-5);
}
.solution-block__lede {
  font-size: var(--text-lg);
  line-height: 1.55;
  color: var(--ink-900);
  font-weight: 500;
  margin-bottom: var(--space-5);
}
.section--off-white .solution-block__lede,
.section--light .solution-block__lede { color: var(--ink-900); }
.solution-block__text p {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--ink-700);
  margin-bottom: var(--space-4);
}
.section--dark .solution-block__text p { color: rgba(255, 255, 255, 0.78); }
.solution-block__footnote {
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  color: var(--ink-500);
}
.solution-block__footnote a {
  color: var(--cyan-500);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ----- Status pills ----- */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid transparent;
}
.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  flex-shrink: 0;
}
.status-pill--live {
  background: rgba(47, 143, 179, 0.12);
  color: var(--cyan-500);
  border-color: rgba(47, 143, 179, 0.35);
}
.status-pill--beta {
  background: rgba(214, 158, 46, 0.14);
  color: #B7791F;
  border-color: rgba(214, 158, 46, 0.4);
}
.status-pill--dev {
  background: rgba(15, 26, 44, 0.06);
  color: var(--ink-700);
  border-color: rgba(15, 26, 44, 0.18);
}
.status-pill--coming {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 860px) {
  .solution-block,
  .solution-block--reverse { grid-template-columns: 1fr; gap: var(--space-6); }
  .solution-block--reverse .solution-block__icon-wrap { order: 0; }
  .solution-block__icon-wrap { position: static; flex-direction: row; justify-content: flex-start; flex-wrap: wrap; }
  .solution-block__icon { max-width: 200px; }
}

/* ============================================
   COMPETITIVE ANALYSIS PAGE
   ============================================ */

.container--narrow { max-width: 980px; }

/* Pricing comparison table */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.pricing-table thead {
  background: var(--navy-900);
  color: var(--white);
}
.pricing-table th {
  text-align: left;
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
}
.pricing-table td {
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-base);
  color: var(--ink-700);
  border-top: 1px solid var(--ink-100);
}
.pricing-table tbody tr:first-child td { border-top: none; }
.pricing-table__highlight td {
  background: rgba(47, 143, 179, 0.06);
  color: var(--ink-900);
  font-size: var(--text-base);
}
.pricing-table__highlight td:first-child {
  border-left: 3px solid var(--cyan-500);
}
.pricing-table tbody tr:hover td { background: rgba(47, 143, 179, 0.04); }
.pricing-table__highlight:hover td { background: rgba(47, 143, 179, 0.10); }
@media (max-width: 700px) {
  .pricing-table th, .pricing-table td {
    padding: var(--space-4);
    font-size: var(--text-sm);
  }
  .pricing-table th:last-child, .pricing-table td:last-child { display: none; }
}

/* Footnote text */
.footnote {
  font-size: var(--text-sm);
  color: var(--ink-500);
  line-height: 1.55;
  font-style: italic;
}

/* Capability cards grid */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-6);
  max-width: 1180px;
  margin: 0 auto;
}
.cap-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-6);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--cyan-500);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.cap-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.cap-card__num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--cyan-500);
  margin-bottom: var(--space-3);
  letter-spacing: 0.02em;
}
.cap-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--ink-900);
  margin: 0 0 var(--space-4);
  line-height: 1.25;
}
.cap-card p {
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink-700);
  margin: 0;
}

/* Embedded PDF viewer */
.pdf-embed {
  background: var(--ink-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-200);
  max-width: 980px;
  margin: 0 auto;
}
.pdf-embed object {
  display: block;
  width: 100%;
  min-height: 900px;
  border: none;
}
.pdf-embed__fallback {
  padding: var(--space-10) var(--space-6);
  text-align: center;
  background: var(--white);
}
.pdf-embed__fallback p {
  margin-bottom: var(--space-5);
  color: var(--ink-700);
}
@media (max-width: 700px) {
  .pdf-embed object { min-height: 600px; }
}

/* Stage label (Services page Fractional COO) */
.stage-label {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-400);
  margin: var(--space-8) 0 var(--space-5);
  text-align: center;
  position: relative;
  padding-bottom: var(--space-4);
}
.stage-label::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--cyan-500);
  margin: var(--space-3) auto 0;
}

/* Phase badge inside tier cards */
.tier-card__phase {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan-300);
  background: rgba(47, 143, 179, 0.14);
  border: 1px solid rgba(47, 143, 179, 0.4);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: var(--space-3);
}

/* ============================================================
   Corner ribbon + icon badge — "Available Now" overlay
   Red & gold premium ribbon styling (replaces the live pill)
   ============================================================ */

/* Large diagonal corner ribbon — used on products.html for M-II Build */
.solution-block__icon-wrap.has-ribbon {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  isolation: isolate;
}
.corner-ribbon {
  position: absolute;
  top: 22px;
  right: -52px;
  width: 200px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #A8202C 0%, #C42839 50%, #A8202C 100%);
  color: #FFF8E1;
  text-align: center;
  padding: 9px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
  z-index: 3;
  pointer-events: none;
  /* Gold edges */
  border-top: 2px solid #D4A437;
  border-bottom: 2px solid #B8881E;
}
.corner-ribbon span {
  display: inline-block;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  background: linear-gradient(180deg, #FFE9A8 0%, #F4D27A 50%, #D4A437 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 800;
}
/* Fallback for browsers without background-clip:text */
@supports not (-webkit-background-clip: text) {
  .corner-ribbon span {
    color: #FFE9A8;
    -webkit-text-fill-color: #FFE9A8;
    background: none;
  }
}

/* Compact badge — used on home page where the icon is small (72px) */
.icon-badge-wrap {
  position: relative;
  display: inline-block;
  line-height: 0;
}
.icon-badge {
  position: absolute;
  top: -10px;
  right: -18px;
  background: linear-gradient(135deg, #A8202C 0%, #C42839 100%);
  color: #FFE9A8;
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 9px 4px;
  border-radius: 4px;
  border-top: 1.5px solid #D4A437;
  border-bottom: 1.5px solid #B8881E;
  box-shadow: 0 3px 10px rgba(168, 32, 44, 0.4);
  white-space: nowrap;
  z-index: 2;
  line-height: 1;
  transform: rotate(12deg);
  transform-origin: center;
}
/* Small flag notch on the badge for ribbon feel */
.icon-badge::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 5px solid #B8881E;
}

/* ----------------------------------------------------------------
   14-Day Free Trial Banner — M-II Build
   ---------------------------------------------------------------- */
.trial-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1.25rem 0;
  padding: 0.5rem 1.1rem 0.5rem 0.9rem;
  background: linear-gradient(135deg, #0F3D2E 0%, #1B6B4F 50%, #0F3D2E 100%);
  color: #FFFFFF;
  border-radius: 999px;
  font-family: var(--font-sans, "Inter", system-ui, sans-serif);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(15, 61, 46, 0.25);
  position: relative;
  z-index: 1;
}
.trial-banner__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  flex: 0 0 auto;
}
.trial-banner__icon svg {
  width: 0.85rem;
  height: 0.85rem;
  fill: #FFE9A8;
}
.trial-banner__label {
  color: #FFE9A8;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
.trial-banner__text {
  color: #FFFFFF;
}

/* Hero-scale variant for top of comparison page */
.trial-banner--hero {
  font-size: 1rem;
  padding: 0.7rem 1.4rem 0.7rem 1.1rem;
  margin-bottom: 1.5rem;
}
.trial-banner--hero .trial-banner__icon {
  width: 1.6rem;
  height: 1.6rem;
}
.trial-banner--hero .trial-banner__icon svg {
  width: 1rem;
  height: 1rem;
}
.trial-banner--hero .trial-banner__label {
  font-size: 0.82rem;
}

/* Block variant for pricing-card area on home */
.trial-banner--block {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 0 auto 2rem auto;
}

@media (max-width: 600px) {
  .trial-banner {
    font-size: 0.85rem;
    padding: 0.45rem 0.95rem 0.45rem 0.75rem;
  }
  .trial-banner__label { font-size: 0.72rem; }
}

/* ----------------------------------------------------------------
   Legal documents (cancellation policy, terms, privacy)
   ---------------------------------------------------------------- */
.legal-doc {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--font-sans, "Inter", system-ui, sans-serif);
  color: var(--ink-700, #2C3645);
}
.legal-doc__meta {
  font-size: 0.9rem;
  color: var(--ink-500, #6B7280);
  font-style: italic;
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--ink-100, #E5E7EB);
}
.legal-doc h2 {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ink-900, #0F1A2C);
  margin: 2.75rem 0 1rem 0;
  line-height: 1.25;
}
.legal-doc h2:first-of-type {
  margin-top: 0;
}
.legal-doc h3 {
  font-family: var(--font-sans, "Inter", system-ui, sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink-900, #0F1A2C);
  margin: 1.5rem 0 0.5rem 0;
  letter-spacing: 0.01em;
}
.legal-doc p {
  font-size: 1rem;
  line-height: 1.75;
  margin: 0 0 1rem 0;
  color: var(--ink-700, #2C3645);
}
.legal-doc a {
  color: var(--cyan-600, #0888A0);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 0.15s ease;
}
.legal-doc a:hover {
  color: var(--cyan-500, #14B8C8);
}
.legal-doc ul, .legal-doc ol {
  margin: 0 0 1rem 1.5rem;
  line-height: 1.75;
}
.legal-doc ul li, .legal-doc ol li {
  margin-bottom: 0.4rem;
}

@media (max-width: 700px) {
  .legal-doc h2 { font-size: 1.4rem; margin-top: 2rem; }
  .legal-doc h3 { font-size: 1rem; }
  .legal-doc p { font-size: 0.95rem; }
}

/* ============ FAQ accordion (comparison page) ============ */
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: var(--space-4) var(--space-5);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq-item:hover { border-color: var(--brand-navy-soft, #2a3a55); box-shadow: 0 6px 22px rgba(15,26,44,0.06); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  font-size: var(--text-lg);
  color: var(--ink);
  font-weight: 600;
  padding: var(--space-2) 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--brand-gold, #C8A862);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p {
  margin: var(--space-3) 0 var(--space-2);
  color: var(--ink-soft);
  font-size: var(--text-base);
  line-height: 1.7;
}

/* ============================================================
   MEDIA / VIDEO LIBRARY (media.html)
   Featured player + filterable grid + lightbox + skeletons
   ============================================================ */

.media-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: var(--space-6, 2rem);
  align-items: start;
  margin-top: var(--space-5, 1.5rem);
}
@media (max-width: 880px) {
  .media-featured { grid-template-columns: 1fr; }
}

.media-featured__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(15, 26, 44, 0.18);
}
.media-featured__player iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

.media-featured__meta {
  padding: var(--space-2, 0.5rem) 0;
}
.media-featured__title {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  line-height: 1.2;
  color: var(--ink-900);
  margin: 0 0 0.5rem 0;
}
.media-featured__date {
  font-size: 0.85rem;
  color: var(--ink-soft, #4a5773);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.9rem;
}
.media-featured__desc {
  color: var(--ink-soft, #4a5773);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 1.2rem 0;
}

.media-featured__placeholder {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: var(--space-6, 2rem);
  background: var(--white, #fff);
  border: 1px dashed rgba(15, 26, 44, 0.18);
  border-radius: 14px;
  text-align: center;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  grid-column: 1 / -1;
}
.media-featured__placeholder h3 {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: 1.4rem;
  color: var(--ink-900);
  margin: 0;
}
.media-featured__placeholder p {
  color: var(--ink-soft, #4a5773);
  margin: 0;
  max-width: 48ch;
}
.media-featured__placeholder-msg {
  color: var(--ink-soft, #4a5773);
  font-style: normal;
  margin-top: 0.5rem;
}

/* Controls row */
.media-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin: var(--space-5, 1.5rem) 0 var(--space-4, 1rem);
}
.media-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.media-filter__btn {
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(15, 26, 44, 0.18);
  background: transparent;
  color: var(--ink-900);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.media-filter__btn:hover { border-color: var(--cyan-500, #2F8FB3); color: var(--cyan-500, #2F8FB3); }
.media-filter__btn.is-active {
  background: var(--ink-900, #0F1A2C);
  color: var(--white, #fff);
  border-color: var(--ink-900, #0F1A2C);
}
.media-controls__cta { flex-shrink: 0; }

/* Card grid */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}
.media-card {
  display: flex;
  flex-direction: column;
  background: var(--white, #fff);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15, 26, 44, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.media-card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(15, 26, 44, 0.12); }

.media-card__play {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: #000;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.media-card__thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s ease;
}
.media-card__play:hover .media-card__thumb { opacity: 0.88; }
.media-card__playicon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.media-card__body {
  padding: 0.95rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.media-card__title {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--ink-900);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.media-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.8rem;
  color: var(--ink-soft, #4a5773);
  margin-top: auto;
}
.media-card__tag {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cyan-500, #2F8FB3);
  background: rgba(47, 143, 179, 0.10);
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
}

/* Skeleton loading */
.media-card--skeleton {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  padding-bottom: 1rem;
}
.media-skeleton {
  background: linear-gradient(90deg, #eef1f5 0%, #f7f9fb 50%, #eef1f5 100%);
  background-size: 200% 100%;
  animation: media-skeleton-shimmer 1.4s infinite linear;
  border-radius: 6px;
}
.media-skeleton--thumb { aspect-ratio: 16/9; width: 100%; border-radius: 0; }
.media-skeleton--line { height: 14px; margin: 0.85rem 1rem 0; }
.media-skeleton--line-sm { width: 50%; height: 10px; }
.media-skeleton--player { aspect-ratio: 16/9; width: 100%; max-width: 720px; border-radius: 12px; }
@keyframes media-skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.media-empty {
  padding: 2rem 1.25rem;
  text-align: center;
  color: var(--ink-soft, #4a5773);
}
.media-empty a { color: var(--cyan-500, #2F8FB3); font-weight: 600; }

.media-link-btn {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: var(--cyan-500, #2F8FB3);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

.media-footnote {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--ink-soft, #4a5773);
  font-size: 0.95rem;
}
.media-footnote a { color: var(--cyan-500, #2F8FB3); font-weight: 600; }

/* Lightbox */
.media-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.media-lightbox[hidden] { display: none; }
.media-lightbox__inner {
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.media-lightbox__player { width: 100%; height: 100%; }
.media-lightbox__player iframe {
  width: 100%; height: 100%; border: 0; display: block;
}
.media-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 0;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background 0.15s ease;
}
.media-lightbox__close:hover { background: rgba(255, 255, 255, 0.32); }

