/* MPV Homepage styles — extracted from prototype-v2 */

  :root {
    --bg: #FAF7F2;
    --bg-2: #F2EEE4;
    --bg-dark: #0E0E0E;
    --ink: #131313;
    --ink-2: #2A2A2A;
    --muted: #5B5B5B;
    --muted-2: #8A8A8A;
    --accent: #FFC700;
    --accent-dark: #CC9F00;
    --accent-soft: #FFF3C4;
    --green: #1C6B3E;
    --green-soft: #E4F0E8;
    --red: #B23A2C;
    --red-soft: #F8E4E0;
    --border: #E5E0D7;
    --border-2: #D4CDBE;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.03);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.08), 0 8px 16px rgba(0,0,0,0.04);
    --shadow-xl: 0 30px 60px rgba(0,0,0,0.12), 0 12px 24px rgba(0,0,0,0.06);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "ss01", "cv01";
    overflow-x: hidden;
  }

  h1, h2, h3, h4 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.05;
    color: var(--ink);
  }

  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  img { max-width: 100%; display: block; }

  .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ---------- HEADER ---------- */
  .header {
    position: sticky;
    top: 0;
    background: rgba(250, 247, 242, 0.85);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
  }
  .logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }
  .logo img {
    display: block;
    height: 40px;
    width: auto;
    max-width: 100%;
  }
  .nav,
  .nav ul {
    display: flex;
    gap: 36px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .nav li {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .nav a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink-2);
    transition: color 0.2s;
  }
  .nav a:hover { color: var(--accent-dark); }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    font-size: 14.5px;
    font-weight: 600;
    border-radius: 999px;
    transition: all 0.25s cubic-bezier(.2,.8,.2,1);
    white-space: nowrap;
    line-height: 1;
  }
  .btn-primary {
    background: var(--ink);
    color: var(--bg);
  }
  .btn-primary:hover {
    background: var(--accent);
    color: var(--ink);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
  }
  .btn-secondary {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--border-2);
  }
  .btn-secondary:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--bg);
  }
  .btn-accent {
    background: var(--accent);
    color: var(--ink);
  }
  .btn-accent:hover {
    background: var(--ink);
    color: var(--bg);
    transform: translateY(-1px);
  }
  .btn-arrow {
    width: 20px; height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
  }
  .btn:hover .btn-arrow { transform: translateX(3px); }

  /* ---------- HERO ---------- */
  .hero {
    padding: 64px 0 100px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: -20%; right: -15%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(255,199,0,0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
  }
  .hero-slider {
    position: relative;
    z-index: 1;
    /* Stack all slides in one grid cell so the slider always sizes to the
       TALLEST slide. Previously only the active slide was in flow, so each
       rotation resized the slider and snapped the whole page up/down. */
    display: grid;
  }
  .hero-slide {
    grid-area: 1 / 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.9s cubic-bezier(.4,0,.2,1);
  }
  .hero-slide.active {
    opacity: 1;
    pointer-events: auto;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .hero-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 56px;
    position: relative;
    z-index: 5;
  }
  .hero-dots {
    display: flex;
    gap: 8px;
  }
  .hero-dot {
    width: 32px;
    height: 4px;
    border-radius: 999px;
    background: var(--border-2);
    transition: all 0.4s;
    cursor: pointer;
    overflow: hidden;
    position: relative;
  }
  .hero-dot.active {
    background: var(--ink);
    width: 64px;
  }
  .hero-dot.active::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform-origin: left;
    transform: scaleX(0);
    animation: dotProgress 7s linear forwards;
  }
  @keyframes dotProgress {
    to { transform: scaleX(1); }
  }
  .hero-counter {
    font-family: 'Fraunces', serif;
    font-size: 13.5px;
    color: var(--muted);
    letter-spacing: 0.05em;
    font-feature-settings: "tnum";
  }
  .hero-counter strong {
    color: var(--ink);
    font-weight: 700;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink);
    padding: 8px 16px;
    background: var(--accent-soft);
    border-radius: 999px;
    margin-bottom: 28px;
    border: 1px solid rgba(255,199,0,0.4);
  }
  .eyebrow-dot {
    width: 6px; height: 6px;
    background: var(--accent-dark);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
  }

  .hero h1,
  .hero .hero-headline {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(44px, 5.2vw, 68px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 26px;
    letter-spacing: -0.035em;
    color: var(--ink);
  }
  .hero h1 em,
  .hero .hero-headline em {
    font-style: normal;
    position: relative;
    white-space: nowrap;
  }
  .hero h1 em::after,
  .hero .hero-headline em::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: -2%;
    width: 104%;
    height: 14px;
    background: var(--accent);
    z-index: -1;
    opacity: 0.55;
    border-radius: 3px;
  }
  .hero p.lede {
    font-size: 19px;
    line-height: 1.55;
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 38px;
  }
  .hero p.lede strong {
    color: var(--ink);
    font-weight: 600;
  }
  .hero-ctas {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
  }
  .hero-sub {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: var(--muted);
  }
  .hero-sub-avatars {
    display: flex;
  }
  .hero-sub-avatars .avatar {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--border);
    border: 2px solid var(--bg);
    margin-left: -8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    color: var(--ink);
  }
  .hero-sub-avatars .avatar:first-child { margin-left: 0; background: #E8D4B8; }
  .hero-sub-avatars .avatar:nth-child(2) { background: #C8D9C4; }
  .hero-sub-avatars .avatar:nth-child(3) { background: #D6C8E0; }

  /* Hero Visual — P&L Dashboard card */
  .hero-visual {
    position: relative;
    height: 540px;
  }
  .dashboard {
    position: absolute;
    inset: 0;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 32px;
    overflow: hidden;
    border: 1px solid var(--border);
  }
  .dashboard::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 36px;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
  }
  .dashboard::after {
    content: "●  ●  ●";
    position: absolute;
    top: 8px;
    left: 14px;
    font-size: 10px;
    color: var(--border-2);
    letter-spacing: 4px;
  }
  .dash-inner {
    margin-top: 24px;
  }
  .dash-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 10px;
  }
  .dash-title {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
  }

  .dash-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
  }
  .dash-metric {
    background: var(--bg);
    border-radius: var(--radius-md);
    padding: 16px;
    border: 1px solid var(--border);
  }
  .dash-metric-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .dash-metric-value {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  .dash-metric-change {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 11.5px;
    font-weight: 600;
    margin-top: 4px;
    padding: 2px 8px;
    border-radius: 999px;
  }
  .change-up {
    background: var(--green-soft);
    color: var(--green);
  }
  .change-down {
    background: var(--red-soft);
    color: var(--red);
  }

  .dash-chart {
    height: 140px;
    position: relative;
    margin-top: 8px;
    padding: 0 4px;
  }
  .dash-chart svg {
    width: 100%;
    height: 100%;
    overflow: visible;
  }
  .dash-chart .line-margin {
    fill: none;
    stroke: var(--green);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: draw 2.2s ease-out 0.4s forwards;
  }
  .dash-chart .line-revenue {
    fill: none;
    stroke: var(--accent);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: draw 2.2s ease-out 0.8s forwards;
  }
  .dash-chart .fill-margin {
    fill: url(#greenGradient);
    opacity: 0;
    animation: fadeIn 1s ease-out 2.4s forwards;
  }
  @keyframes draw {
    to { stroke-dashoffset: 0; }
  }
  @keyframes fadeIn {
    to { opacity: 0.18; }
  }
  .dash-legend {
    display: flex;
    gap: 20px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--border);
    font-size: 12px;
    color: var(--muted);
  }
  .dash-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .dash-legend-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
  }

  /* Floating badges around dashboard */
  .float-badge {
    position: absolute;
    background: white;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 4s ease-in-out infinite;
    z-index: 3;
  }
  .dashboard { z-index: 1; }
  .float-badge strong { font-weight: 700; }
  .float-badge-1 {
    top: -20px;
    left: -30px;
    animation-delay: 0s;
  }
  .float-badge-2 {
    bottom: 40px;
    right: -40px;
    animation-delay: 1.5s;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .float-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .float-icon-green { background: var(--green-soft); color: var(--green); }
  .float-icon-yellow { background: var(--accent-soft); color: var(--ink); }

  /* ---------- HERO VISUAL 2: Operator Team ---------- */
  .team-card {
    position: absolute;
    inset: 0;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 32px;
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    z-index: 1;
  }
  .team-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
  }
  .team-card-title {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  .team-card-status {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--green);
    background: var(--green-soft);
    padding: 4px 10px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .team-card-status::before {
    content: "";
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }
  .team-leaders {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
  }
  .team-leader {
    background: var(--bg);
    border-radius: var(--radius-md);
    padding: 14px;
    text-align: center;
    border: 1px solid var(--border);
  }
  .team-leader-avatar {
    width: 76px; height: 76px;
    border-radius: 50%;
    margin: 0 auto 10px;
    overflow: hidden;
    border: 2px solid var(--ink);
    background: var(--bg-2);
  }
  .team-leader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .team-leader-name {
    font-size: 12.5px;
    font-weight: 700;
    margin-bottom: 2px;
  }
  .team-leader-role {
    font-size: 10.5px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
  }
  .team-section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 12px;
  }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 20px;
  }
  .team-grid-cell {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-2);
    border: 1px solid var(--border);
    position: relative;
  }
  .team-grid-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .team-grid-more {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF3C4;
    border-color: #E5C266;
    color: var(--ink);
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.01em;
  }
  .team-stats {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px dashed var(--border);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    text-align: center;
  }
  .team-stat-num {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 700;
  }
  .team-stat-label {
    font-size: 10.5px;
    color: var(--muted);
    margin-top: 2px;
  }

  /* ---------- HERO VISUAL 3: Margin Protection ---------- */
  .margin-card {
    position: absolute;
    inset: 0;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 32px;
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    z-index: 1;
  }
  .margin-card-header {
    margin-bottom: 24px;
  }
  .margin-card-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 8px;
  }
  .margin-card-title {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
  }
  .margin-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 220px;
    margin-bottom: 16px;
    padding-top: 24px;
  }
  .margin-bar-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative;
  }
  .margin-bar-stack {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 6px 6px 0 0;
    overflow: hidden;
    position: relative;
  }
  .bar-revenue {
    background: var(--accent);
    width: 100%;
    transform-origin: bottom;
    transform: scaleY(0);
    transition: transform 1.2s cubic-bezier(.4,0,.2,1);
  }
  .bar-margin {
    background: var(--green);
    width: 100%;
    transform-origin: bottom;
    transform: scaleY(0);
    transition: transform 1.2s cubic-bezier(.4,0,.2,1) 0.3s;
  }
  .hero-slide.active .bar-revenue,
  .hero-slide.active .bar-margin {
    transform: scaleY(1);
  }
  .margin-bar-label {
    font-size: 10.5px;
    color: var(--muted);
    margin-top: 8px;
    text-align: center;
    font-weight: 600;
  }
  .margin-bar-value {
    position: absolute;
    top: -20px;
    left: 0; right: 0;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--ink);
  }
  .margin-bar-cap {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: white;
    font-size: 9.5px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
    letter-spacing: 0.04em;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(28,107,62,0.25);
  }
  .margin-card-legend {
    display: flex;
    gap: 18px;
    padding-top: 14px;
    border-top: 1px dashed var(--border);
    font-size: 12px;
    color: var(--muted);
  }
  .margin-card-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .margin-card-legend-dot {
    width: 8px; height: 8px;
    border-radius: 2px;
  }

  /* ---------- COMPLEXITY → CLARITY ---------- */
  .clarity {
    padding: 130px 0;
    background: var(--bg);
    overflow: hidden;
    position: relative;
  }
  .clarity-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }
  .clarity-header h2 {
    font-size: clamp(40px, 5vw, 60px);
    margin-bottom: 22px;
  }
  .clarity-header h2 em {
    font-style: italic;
    color: var(--accent);
  }
  .clarity-header p {
    font-size: 19px;
    color: var(--muted);
    line-height: 1.55;
  }
  .clarity-stage {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    min-height: 480px;
  }

  .chaos {
    position: relative;
    height: 480px;
  }
  .chaos-card {
    position: absolute;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    font-size: 12.5px;
    color: var(--ink-2);
    transition: transform 0.6s cubic-bezier(.4,0,.2,1);
    will-change: transform;
  }
  .chaos-card .chaos-num {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    color: var(--ink);
    font-size: 18px;
    margin-bottom: 4px;
    display: block;
    letter-spacing: -0.02em;
  }
  .chaos-card .chaos-num small {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
  }
  .chaos-card-1 { top: 10%; left: 0; }
  .chaos-card-2 { top: 5%; left: 50%; }
  .chaos-card-3 { top: 32%; left: 18%; }
  .chaos-card-4 { top: 50%; left: 55%; }
  .chaos-card-5 { top: 68%; left: 8%; }
  .chaos-card-6 { top: 78%; left: 48%; }

  .clarity-arrow {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(255,199,0,0.35);
    position: relative;
  }
  .clarity-arrow::after {
    content: "→";
    font-family: 'Fraunces', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
  }
  .clarity-arrow::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    opacity: 0.4;
    animation: ripple 2.4s ease-out infinite;
  }
  @keyframes ripple {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.5); opacity: 0; }
  }

  .order {
    background: var(--ink);
    border-radius: var(--radius-xl);
    padding: 32px;
    color: white;
    box-shadow: var(--shadow-xl);
    position: relative;
  }
  .order-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .order-title {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
  }
  .order-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 14px;
  }
  .order-row:last-child { border-bottom: none; }
  .order-row-label { color: rgba(255,255,255,0.7); }
  .order-row-value {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 18px;
  }
  .order-row-value.pos { color: var(--accent); }
  .order-row-value.neg { color: #FF8A75; }
  .order-bottom {
    margin-top: 14px;
    padding-top: 18px;
    border-top: 2px solid var(--accent);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .order-bottom-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
  }
  .order-bottom-value {
    font-family: 'Fraunces', serif;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: white;
  }

  /* ---------- FLYWHEEL ---------- */
  .flywheel-section {
    padding: 130px 0;
    background: var(--bg-2);
    overflow: hidden;
    position: relative;
  }
  .flywheel-header {
    text-align: center;
    margin-bottom: 48px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }
  .flywheel-header h2 {
    font-size: clamp(40px, 5vw, 58px);
    margin-bottom: 22px;
  }
  .flywheel-header h2 em {
    font-style: italic;
    color: var(--accent);
  }
  .flywheel-header p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.55;
  }
  .flywheel-instruction {
    text-align: center;
    margin-bottom: 32px;
    font-size: 13.5px;
    color: var(--muted);
    letter-spacing: 0.02em;
    transition: opacity 0.4s, transform 0.4s;
  }
  .flywheel-instruction strong {
    font-weight: 700;
    color: var(--ink);
  }
  .flywheel-instruction.complete {
    color: var(--accent);
  }
  .flywheel-stage {
    position: relative;
    width: min(660px, 94vw);
    height: min(660px, 94vw);
    margin: 0 auto;
    --hub-size: clamp(170px, 30vw, 220px);
    --tile-w: clamp(150px, 23vw, 180px);
    --tile-h: clamp(108px, 16vw, 130px);
    --tile-radius: clamp(205px, 33vw, 245px);
  }
  .flywheel {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(.4,0,.2,1);
  }
  .flywheel.spinning {
    animation: flySpin 24s linear infinite;
  }
  @keyframes flySpin {
    to { transform: rotate(360deg); }
  }
  .flywheel-tile {
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--tile-w);
    height: var(--tile-h);
    margin: calc(var(--tile-h) * -0.5) 0 0 calc(var(--tile-w) * -0.5);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: box-shadow 0.45s, opacity 0.45s;
    transform: rotate(var(--angle)) translateY(calc(var(--tile-radius) * -1)) rotate(calc(var(--angle) * -1));
    opacity: 0.55;
    box-shadow: var(--shadow-sm);
    perspective: 900px;
  }
  .flywheel.spinning .flywheel-tile {
    animation: flyCounterSpin 24s linear infinite;
  }
  @keyframes flyCounterSpin {
    from { transform: rotate(var(--angle)) translateY(calc(var(--tile-radius) * -1)) rotate(0deg); }
    to   { transform: rotate(var(--angle)) translateY(calc(var(--tile-radius) * -1)) rotate(-360deg); }
  }
  .flywheel-tile.lit {
    opacity: 1;
    box-shadow: 0 12px 30px rgba(255,199,0,0.45), 0 0 0 4px rgba(255,199,0,0.15);
  }
  .flywheel-tile:hover {
    opacity: 1;
    box-shadow: var(--shadow-lg), 0 0 0 4px rgba(255,199,0,0.22);
  }
  .flywheel-tile-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.65s cubic-bezier(.4,0,.2,1);
  }
  .flywheel-tile:hover .flywheel-tile-inner {
    transform: rotateY(180deg);
  }
  .flywheel-tile-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: white;
    transition: background 0.45s, border-color 0.45s, color 0.45s;
    overflow: hidden;
  }
  .flywheel-tile.lit .flywheel-tile-front {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--ink);
  }
  .flywheel-tile-back {
    transform: rotateY(180deg);
    background: var(--ink);
    color: white;
    border-color: var(--ink);
    text-align: left;
    padding: 16px 18px;
    justify-content: center;
    align-items: flex-start;
  }
  .flywheel-tile.lit .flywheel-tile-back {
    border-color: var(--accent);
  }
  .flywheel-tile-icon {
    font-family: 'Fraunces', serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
  }
  .flywheel-tile.lit .flywheel-tile-icon { color: var(--accent); }
  .flywheel-tile-title {
    font-family: 'Fraunces', serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin-bottom: 4px;
  }
  .flywheel-tile-sub {
    font-size: 11.5px;
    color: var(--muted);
    line-height: 1.3;
  }
  .flywheel-tile.lit .flywheel-tile-sub { color: var(--ink-2); }
  .flywheel-tile-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .flywheel-tile-bullets li {
    font-size: 13px;
    color: white;
    padding: 6px 0 6px 14px;
    position: relative;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: -0.005em;
  }
  .flywheel-tile-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
  }
  .flywheel-tile-check {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px; height: 24px;
    background: var(--ink);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(.5,1.5,.5,1);
    z-index: 3;
    pointer-events: none;
  }
  .flywheel-tile.lit .flywheel-tile-check {
    opacity: 1;
    transform: scale(1);
  }

  .flywheel-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--hub-size);
    height: var(--hub-size);
    margin: calc(var(--hub-size) * -0.5) 0 0 calc(var(--hub-size) * -0.5);
    background: white;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(14px, 2.2vw, 22px);
    transition: all 0.7s cubic-bezier(.4,0,.2,1);
    z-index: 5;
    box-shadow: var(--shadow-md);
  }
  .flywheel.spinning .flywheel-hub {
    background: var(--accent);
    border-color: var(--ink);
    box-shadow: 0 0 0 8px rgba(255,199,0,0.2), 0 20px 60px rgba(255,199,0,0.4);
    animation: hubPulse 2.4s ease-in-out infinite;
  }
  @keyframes hubPulse {
    0%, 100% { box-shadow: 0 0 0 8px rgba(255,199,0,0.2), 0 20px 60px rgba(255,199,0,0.4); }
    50% { box-shadow: 0 0 0 16px rgba(255,199,0,0.3), 0 20px 60px rgba(255,199,0,0.5); }
  }
  .flywheel-hub-eyebrow {
    font-size: clamp(9px, 1vw, 11px);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: clamp(4px, 1vw, 8px);
    transition: color 0.4s;
    white-space: nowrap;
  }
  .flywheel.spinning .flywheel-hub-eyebrow { color: var(--ink); }
  .flywheel-hub-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(15px, 2.2vw, 22px);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: var(--ink);
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .flywheel-hub-progress {
    margin-top: clamp(8px, 1.5vw, 16px);
    font-size: clamp(10.5px, 1.1vw, 12.5px);
    color: var(--muted-2);
    font-weight: 600;
    letter-spacing: 0.05em;
  }
  .flywheel.spinning .flywheel-hub-progress { display: none; }
  .flywheel-hub-arrow {
    margin-top: 8px;
    font-size: 24px;
    color: var(--ink);
    opacity: 0;
    transition: opacity 0.5s;
  }
  .flywheel.spinning .flywheel-hub-arrow { opacity: 1; }

  .flywheel-reset {
    margin-top: 32px;
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.5s;
  }
  .flywheel-reset.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .flywheel-reset button {
    background: transparent;
    border: 1px solid var(--border-2);
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    transition: all 0.2s;
  }
  .flywheel-reset button:hover {
    background: var(--ink);
    color: var(--bg);
    border-color: var(--ink);
  }

  /* ---------- TRUST BAR ---------- */
  .trust-bar {
    padding: 56px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-2);
  }
  .trust-label {
    text-align: center;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 32px;
  }
  .trust-marquee {
    --trust-gap: 56px;
    --trust-duration: 40s;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  }
  .trust-track {
    display: flex;
    align-items: center;
    gap: var(--trust-gap);
    width: max-content;
    padding-right: var(--trust-gap);
    animation: trustMarquee var(--trust-duration) linear infinite;
    will-change: transform;
  }
  .trust-marquee:hover .trust-track { animation-play-state: paused; }
  @keyframes trustMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-50% - (var(--trust-gap) / 2))); }
  }
  @media (prefers-reduced-motion: reduce) {
    .trust-track { animation: none; }
  }
  .trust-logo {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 22px;
    color: var(--muted);
    letter-spacing: -0.01em;
    opacity: 0.75;
    transition: opacity 0.2s, color 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .trust-logo:hover { opacity: 1; color: var(--ink); }
  .trust-logo.bold { font-weight: 800; letter-spacing: 0.02em; text-transform: uppercase; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; }
  .trust-logo.italic { font-style: italic; }

  /* ---------- STATS ---------- */
  .stats {
    padding: 120px 0;
  }
  .stats-header {
    text-align: center;
    margin-bottom: 72px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
  }
  .section-eyebrow {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
  }
  .stats-header h2 {
    font-size: clamp(36px, 4.4vw, 54px);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
  }
  .stats-header p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.55;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .stat {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .stat::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
  }
  .stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
  .stat:hover::before { transform: scaleX(1); }

  .stat-num {
    font-family: 'Fraunces', serif;
    font-size: clamp(42px, 4.2vw, 56px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 14px;
  }
  .stat-num .unit {
    color: var(--accent);
    font-size: 0.6em;
    font-weight: 600;
  }
  .stat-label {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.45;
    font-weight: 500;
  }

  /* ---------- CONTRAST (Less Hype, More P&L) ---------- */
  .contrast {
    padding: 120px 0;
    background: var(--bg-dark);
    color: white;
    position: relative;
    overflow: hidden;
  }
  .contrast::before {
    content: "";
    position: absolute;
    top: -50%; right: -10%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(255,199,0,0.08) 0%, transparent 60%);
    pointer-events: none;
  }
  .contrast-header {
    text-align: center;
    margin-bottom: 72px;
    position: relative;
  }
  .contrast-header .section-eyebrow {
    color: var(--accent);
  }
  .contrast-header h2 {
    color: white;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
  }
  .contrast-header h2 em {
    font-style: normal;
    color: var(--accent);
  }
  .contrast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 1040px;
    margin: 0 auto;
    position: relative;
  }
  .contrast-col {
    padding: 40px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .contrast-col.us {
    background: linear-gradient(135deg, rgba(255,199,0,0.12), rgba(255,199,0,0.04));
    border-color: rgba(255,199,0,0.3);
  }
  .contrast-col-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.6);
  }
  .contrast-col.us .contrast-col-title { color: var(--accent); }
  .contrast-col h3 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 28px;
  }
  .contrast-list { list-style: none; }
  .contrast-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 15.5px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
  }
  .contrast-list li:last-child { border: none; }
  .contrast-list .icon {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    margin-top: 2px;
  }
  .contrast-col.them .icon { background: rgba(178,58,44,0.2); color: #E89181; }
  .contrast-col.us .icon { background: var(--accent); color: var(--ink); }
  .contrast-col.us .contrast-list li { color: white; }

  /* ---------- SERVICES ---------- */
  .services {
    padding: 120px 0;
  }
  .services-header {
    max-width: 780px;
    margin-bottom: 72px;
  }
  .services-header h2 {
    font-size: clamp(36px, 4.4vw, 54px);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
  }
  .services-header p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.55;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
  }
  .service-num {
    font-family: 'Fraunces', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    display: inline-block;
  }
  .service-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }
  .service-card p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .service-bullets {
    list-style: none;
    margin-top: 20px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
  }
  .service-bullets li {
    font-size: 13.5px;
    color: var(--ink-2);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .service-bullets li::before {
    content: "";
    width: 5px; height: 5px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ---------- CASE STUDIES ---------- */
  .cases {
    padding: 120px 0;
    background: var(--bg-2);
  }
  .cases-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    gap: 40px;
  }
  .cases-header h2 {
    font-size: clamp(36px, 4.4vw, 54px);
    max-width: 640px;
    letter-spacing: -0.03em;
  }
  .cases-header p {
    font-size: 16px;
    color: var(--muted);
    max-width: 380px;
    line-height: 1.55;
  }
  .cases-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 20px;
  }
  .case-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    cursor: pointer;
  }
  .case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  .case-card.featured {
    background: var(--ink);
    color: white;
    grid-row: span 2;
    min-height: 500px;
    border-color: var(--ink);
  }
  .case-tag {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
  }
  .case-card.featured .case-tag { color: var(--accent); }
  .case-card h3 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.25;
    letter-spacing: -0.02em;
  }
  .case-card.featured h3 {
    color: white;
    font-size: 32px;
    font-weight: 700;
  }
  .case-card p {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.55;
    flex-grow: 1;
  }
  .case-card.featured p {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
  }
  .case-result {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }
  .case-card.featured .case-result {
    border-color: rgba(255,255,255,0.12);
  }
  .case-result-num {
    font-family: 'Fraunces', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 4px;
  }
  .case-card.featured .case-result-num {
    font-size: 56px;
    color: var(--accent);
  }
  .case-result-label {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
  }
  .case-card.featured .case-result-label {
    color: rgba(255,255,255,0.65);
    font-size: 14.5px;
  }
  .case-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .case-card.featured .case-link { color: var(--accent); }

  /* ---------- FOUNDERS ---------- */
  .founders {
    padding: 120px 0;
  }
  .founders-header {
    text-align: center;
    margin-bottom: 72px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }
  .founders-header h2 {
    font-size: clamp(36px, 4.4vw, 54px);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
  }
  .founders-header p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.55;
  }
  .founders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .founder {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 36px 36px;
    border: 1px solid var(--border);
    transition: all 0.3s;
  }
  .founder:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
  .founder-avatar {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    display: block;
    margin-bottom: 24px;
    border: 2px solid var(--ink);
    background: var(--bg-2);
  }

  .founder-lane {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
  }
  .founder-name {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
  }
  .founder-title {
    font-size: 13.5px;
    color: var(--muted);
    margin-bottom: 20px;
    font-weight: 500;
  }
  .founder-bio {
    font-size: 14.5px;
    color: var(--ink-2);
    line-height: 1.6;
  }
  .founder-bio em {
    display: block;
    margin-top: 12px;
    font-style: italic;
    color: var(--accent);
    font-weight: 500;
  }

  /* ---------- TESTIMONIALS ---------- */
  .testimonials {
    padding: 120px 0;
    background: var(--bg-2);
  }
  .testimonials-header {
    text-align: center;
    margin-bottom: 72px;
  }
  .testimonials-header h2 {
    font-size: clamp(36px, 4.4vw, 54px);
    letter-spacing: -0.03em;
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
  }
  .testimonial {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
  }
  .testimonial.big {
    background: var(--ink);
    color: white;
    border-color: var(--ink);
  }
  .testimonial-quote-mark {
    font-family: 'Fraunces', serif;
    font-size: 80px;
    font-weight: 700;
    color: var(--accent);
    line-height: 0.6;
    margin-bottom: 16px;
  }
  .testimonial-body {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -0.01em;
    color: var(--ink);
    flex-grow: 1;
    margin-bottom: 28px;
  }
  .testimonial.big .testimonial-body {
    font-size: 26px;
    color: white;
    line-height: 1.4;
  }
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }
  .testimonial.big .testimonial-author {
    border-color: rgba(255,255,255,0.12);
  }
  .testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
  }
  .testimonial.big .testimonial-avatar {
    background: var(--accent);
  }
  .testimonial-name {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 2px;
  }
  .testimonial-role {
    font-size: 13px;
    color: var(--muted);
  }
  .testimonial.big .testimonial-role {
    color: rgba(255,255,255,0.6);
  }

  /* ---------- CTA ---------- */
  .cta {
    padding: 120px 0;
  }
  .cta-box {
    background: var(--ink);
    color: white;
    padding: 80px 64px;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-box::before {
    content: "";
    position: absolute;
    bottom: -50%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,199,0,0.15) 0%, transparent 60%);
    pointer-events: none;
  }
  .cta-eyebrow {
    color: var(--accent);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
    position: relative;
  }
  .cta h2 {
    color: white;
    font-size: clamp(36px, 4.8vw, 58px);
    max-width: 780px;
    margin: 0 auto 24px;
    letter-spacing: -0.03em;
    position: relative;
  }
  .cta h2 em {
    font-style: normal;
    color: var(--accent);
  }
  .cta p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.55;
    position: relative;
  }
  .cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
  }
  .cta .btn-secondary,
  .svc-cta .btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.25);
  }
  .cta .btn-secondary:hover,
  .svc-cta .btn-secondary:hover {
    background: white;
    color: var(--ink);
    border-color: white;
  }

  /* ---------- FOOTER ---------- */
  .footer {
    padding: 80px 0 48px;
    border-top: 1px solid var(--border);
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1.1fr 1fr 0.9fr 1.1fr;
    gap: 36px;
    margin-bottom: 56px;
  }
  .footer-about {
    max-width: 320px;
  }
  @media (max-width: 1200px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .footer-about { grid-column: 1 / -1; max-width: 600px; margin-bottom: 16px; }
  }
  .footer-about .logo {
    margin-bottom: 20px;
  }
  .footer-about p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
  }
  .footer-col h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; }
  .footer-col li {
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
  }
  .footer-col a {
    color: inherit;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--ink); }
  .footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--muted);
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-bottom-links {
    display: flex;
    gap: 24px;
  }

  /* ---------- SCROLL ANIMATIONS ---------- */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(.2,.8,.2,1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ---------- NOTE BANNER ---------- */
  .note-banner {
    background: var(--ink);
    color: var(--bg-2);
    padding: 10px 32px;
    text-align: center;
    font-size: 12.5px;
    letter-spacing: 0.02em;
  }
  .note-banner strong { color: var(--accent); font-weight: 700; }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 960px) {
    .hero-grid,
    .stats-grid,
    .services-grid,
    .cases-grid,
    .founders-grid,
    .testimonials-grid,
    .contrast-grid,
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-visual { height: 420px; order: -1; }
    .case-card.featured { grid-row: auto; min-height: 320px; }
    .cases-header { flex-direction: column; align-items: flex-start; }
    .nav { display: none; }
    .hero { padding: 40px 0 64px; }
    .stats, .services, .cases, .founders, .testimonials, .cta { padding: 80px 0; }
    .cta-box { padding: 56px 32px; }
    .contrast, .clarity, .flywheel-section { padding: 80px 0; }
    .footer-grid { gap: 40px; }
    .clarity-stage { grid-template-columns: 1fr; gap: 24px; min-height: auto; }
    .chaos { height: 360px; }
    .clarity-arrow { transform: rotate(90deg); margin: 0 auto; }
    .flywheel-tile-title { font-size: 13.5px; }
    .flywheel-tile-sub { font-size: 10.5px; }
  }
  @media (max-width: 560px) {
    .container { padding: 0 20px; }
    .stats-grid { grid-template-columns: 1fr; }
    .trust-marquee { --trust-gap: 36px; --trust-duration: 30s; }
    .trust-logo { font-size: 16px; }
    .trust-logo.bold { font-size: 14.5px; }
    .float-badge-1 { left: 0; }
    .float-badge-2 { right: 0; }

    /* Shrink header CTA so it stops bleeding into the logo on phones */
    .header .btn-primary {
      padding: 10px 14px;
      font-size: 13px;
      gap: 6px;
    }
    .header .btn-primary .btn-arrow { width: 16px; height: 16px; }
    .logo img { height: 36px; }
  }

  /* ---------- FLYWHEEL MOBILE LAYOUT ---------- */
  @media (max-width: 600px) {
    .flywheel-section { padding: 56px 0; }
    .flywheel-header { margin-bottom: 20px; }
    .flywheel-header h2 { font-size: 30px; margin-bottom: 12px; }
    .flywheel-header p { font-size: 14.5px; }
    .flywheel-instruction { margin-bottom: 16px; font-size: 12px; }

    /* Stage: full-width vertical layout instead of circular */
    .flywheel-stage {
      width: 100%;
      height: auto;
      --hub-size: auto;
      --tile-w: auto;
      --tile-h: auto;
    }
    .flywheel {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
      width: 100%;
      height: auto;
    }

    /* Hub: circle placed AFTER the 7 tiles — becomes the "flywheel" once all tiles are lit */
    .flywheel-hub {
      position: relative;
      top: auto;
      left: auto;
      right: auto;
      bottom: auto;
      grid-column: 1 / -1;
      justify-self: center;
      order: 10;
      width: 200px;
      height: 200px;
      aspect-ratio: 1;
      margin: 28px 0 0;
      padding: 22px;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      background: white;
      border: 2px solid var(--border);
      box-shadow: var(--shadow-md);
    }
    .flywheel-hub-eyebrow {
      font-size: 10px;
      letter-spacing: 0.14em;
      margin-bottom: 6px;
    }
    .flywheel-hub-title {
      font-size: 19px;
      line-height: 1.15;
    }
    .flywheel-hub-progress {
      margin-top: 10px;
      font-size: 11px;
      font-weight: 700;
      color: var(--muted-2);
    }
    .flywheel-hub-arrow {
      margin-top: 8px;
      font-size: 22px;
    }

    /* Rotating dashed ring appears around the hub once all tiles are activated */
    .flywheel-hub::before {
      content: "";
      position: absolute;
      inset: -14px;
      border: 3px dashed var(--accent);
      border-radius: 50%;
      opacity: 0;
      transition: opacity 0.5s;
      pointer-events: none;
    }
    .flywheel.spinning .flywheel-hub::before {
      opacity: 1;
      animation: flyMobileSpin 6s linear infinite;
    }
    .flywheel.spinning .flywheel-hub-arrow {
      display: inline-block;
      animation: flyMobileSpin 2s linear infinite;
    }
    @keyframes flyMobileSpin {
      to { transform: rotate(360deg); }
    }

    /* Last tile spans both columns so there's no orphan */
    .flywheel-tile:nth-child(7) { grid-column: 1 / -1; }

    /* Tiles: remove circular positioning */
    .flywheel-tile {
      position: static !important;
      width: 100% !important;
      height: auto !important;
      margin: 0 !important;
      transform: none !important;
      opacity: 0.7;
    }
    .flywheel-tile.lit { opacity: 1; }
    .flywheel-tile-inner {
      position: relative;
      width: 100%;
      height: auto;
      transform-style: flat;
    }
    .flywheel-tile-face {
      padding: 12px 14px;
    }
    .flywheel-tile-front {
      position: relative !important;
      min-height: 76px;
    }
    .flywheel-tile-back {
      position: absolute;
      inset: 0;
    }
    /* On mobile, tap toggles flip instead of hover */
    .flywheel-tile:hover .flywheel-tile-inner { transform: none; }
    .flywheel-tile.flipped-mobile .flywheel-tile-inner {
      transform: rotateY(180deg);
      transform-style: preserve-3d;
    }
    .flywheel-tile.flipped-mobile .flywheel-tile-front,
    .flywheel-tile.flipped-mobile .flywheel-tile-back {
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
    }
    .flywheel-tile-icon { font-size: 9.5px; margin-bottom: 3px; }
    .flywheel-tile-title { font-size: 14px; line-height: 1.15; }
    .flywheel-tile-sub { font-size: 10.5px; }
    .flywheel-tile-bullets li { font-size: 11.5px; padding: 3px 0 3px 12px; }
    .flywheel-tile-bullets li::before { top: 9px; width: 4px; height: 4px; }
    .flywheel-tile-check { width: 18px; height: 18px; font-size: 10px; top: -5px; right: -5px; }

    /* Disable circular spin on mobile; keep the lit-state styling */
    .flywheel.spinning { animation: none; }
    .flywheel.spinning .flywheel-tile { animation: none !important; transform: none !important; opacity: 1; }
    .flywheel.spinning .flywheel-tile .flywheel-tile-front {
      background: var(--accent);
      border-color: var(--accent);
    }

    .flywheel-reset { margin-top: 16px; }
    .flywheel-reset button { padding: 8px 16px; font-size: 12px; }
  }

  /* ---------- HERO MOBILE FIXES ----------
     Keep all 3 hero cards (dashboard / team / margin) at fixed height
     so each slide takes the same vertical space and the slider transitions
     feel smooth. The team card overflows by design — operator photos peek
     out from behind founders as a "+ more" preview. We only shrink the
     internals so the founder row fits horizontally and the chart on slide
     3 fits vertically.
     ALSO: move the slider dots/pills above the hero text so users notice
     them on phones (where the visual is order:-1, putting controls below
     would hide them under the headline + CTAs). */
  @media (max-width: 960px) {
    .hero > .container { display: flex; flex-direction: column; }
    .hero-controls {
      order: -1;
      margin-top: 0;
      margin-bottom: 28px;
      justify-content: center;
    }
  }
  @media (max-width: 600px) {
    /* Float badges: pull inside the card edges + shrink so they don't
       overflow the viewport on phones. */
    .float-badge {
      font-size: 11.5px;
      padding: 8px 12px;
      gap: 8px;
      max-width: 64%;
    }
    .float-badge strong { font-size: 12.5px; }
    .float-badge .float-icon { width: 26px; height: 26px; }
    .float-badge-1 { top: -12px; left: 6px; }
    .float-badge-2 { bottom: -14px; right: 6px; }

    /* Slide 1 — Dashboard mockup */
    .dashboard { padding: 20px; }
    .dash-title { font-size: 19px; margin-bottom: 18px; }
    .dash-metrics { gap: 10px; margin-bottom: 18px; }
    .dash-metric { padding: 12px; }
    .dash-metric-value { font-size: 22px; }
    .dash-chart { height: 110px; }

    /* Slide 2 — Team card. Avatars + padding shrink so 3 founders fit
       horizontally; operator grid below stays visible as a preview but
       gets cropped naturally by overflow:hidden on the card. */
    .team-card { padding: 22px; }
    .team-card-header { margin-bottom: 16px; }
    .team-card-title { font-size: 17px; }
    .team-card-status {
      font-size: 9.5px;
      padding: 3px 8px;
      letter-spacing: 0.1em;
    }
    .team-leaders { gap: 8px; margin-bottom: 16px; }
    .team-leader { padding: 10px 6px; }
    .team-leader-avatar {
      width: 54px;
      height: 54px;
      margin-bottom: 8px;
    }
    .team-leader-name { font-size: 11.5px; }
    .team-leader-role { font-size: 9.5px; letter-spacing: 0.04em; }
    .team-section-label { font-size: 10px; margin-bottom: 10px; }
    .team-grid { gap: 5px; }
    .team-grid-cell { border-radius: 6px; }
    .team-grid-more { font-size: 12.5px; }

    /* Slide 3 — Margin bar chart. Shrink chart height + paddings so
       bars don't get clipped and the legend stays inside the card. */
    .margin-card { padding: 22px; }
    .margin-card-header { margin-bottom: 18px; }
    .margin-card-title { font-size: 18px; }
    .margin-bars {
      height: 150px;
      padding-top: 18px;
      gap: 6px;
      margin-bottom: 14px;
    }
    .margin-bar-label { font-size: 9.5px; margin-top: 6px; }
    .margin-bar-cap {
      font-size: 8.5px;
      padding: 2px 6px;
      top: -6px;
    }
    .margin-card-legend {
      gap: 12px;
      padding-top: 12px;
      font-size: 11px;
    }
  }

  /* ============================================================
     AEO additions (v2.9.0) — content layer for LLM optimization.
     Sections: hero AEO snippet, friction lede, 3P360 mini-section,
     anti-persona, case disclaimers + footer link, founders footer,
     secondary CTA path.
     ============================================================ */

  /* Hero AEO Snippet — Sacred Ground.
     Plain paragraph below hero CTAs. Muted, narrow, no decoration.
     Reserved for an LLM to lift verbatim as a citation. */
  .hero-aeo {
    margin-top: 28px;
    max-width: 640px;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--muted);
    border-left: 2px solid var(--border);
    padding: 4px 0 4px 14px;
  }
  .hero-aeo strong { color: inherit; font-weight: inherit; }

  /* Contrast section intro paragraph (Friction §2)
     .contrast sits on var(--bg-dark) — use light text colors,
     and margin: 0 auto so max-width paragraphs center under the H2. */
  .contrast-header .contrast-lede {
    margin: 18px auto 0;
    max-width: 920px;
    font-size: 16.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
  }
  /* §2 standalone H3 "What This Looks Like in Practice." + body */
  .contrast-header .contrast-practice {
    margin: 28px auto 0;
    font-size: clamp(22px, 2.4vw, 28px);
    color: #fff;
    letter-spacing: -0.02em;
  }
  .contrast-header .contrast-practice-body {
    margin: 10px auto 0;
    max-width: 820px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
  }

  /* Founder credential H3 — consultant-spec'd AEO heading per founder card */
  .founder .founder-credential {
    margin: 14px 0 10px;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--ink);
  }

  /* 3P360 — Proprietary dashboard mini-section */
  .proprietary {
    padding: 80px 0;
    background: var(--bg);
  }
  .proprietary-card {
    background: var(--mpv-bg-dark, #0E0E0E);
    color: #fff;
    border-radius: var(--mpv-radius-lg, 20px);
    padding: 64px 56px;
    text-align: center;
    box-shadow: var(--mpv-shadow-lg);
    position: relative;
    overflow: hidden;
  }
  .proprietary-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 20% 20%, rgba(255,199,0,0.10) 0%, transparent 50%),
      radial-gradient(circle at 80% 80%, rgba(255,199,0,0.08) 0%, transparent 50%);
    pointer-events: none;
  }
  .proprietary-eyebrow {
    position: relative;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .proprietary-card h2 {
    position: relative;
    color: #fff;
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
  }
  .proprietary-card h2 em {
    font-style: normal;
    color: var(--accent);
  }
  .proprietary-card p {
    position: relative;
    max-width: 760px;
    margin: 0 auto 40px;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,0.78);
  }
  .proprietary-stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 680px;
    margin: 0 auto;
  }
  .proprietary-stat-num {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 700;
    font-size: 36px;
    color: var(--accent);
    line-height: 1.1;
    margin-bottom: 6px;
  }
  .proprietary-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
  }

  /* Anti-persona — qualification section */
  .anti-persona {
    padding: 80px 0;
    background: var(--bg-2);
  }
  .anti-persona-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
  }
  .anti-persona-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin: 12px 0 8px;
  }
  .anti-persona-header h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: var(--muted);
    letter-spacing: 0;
  }
  .anti-persona-header h3 em {
    font-style: italic;
    color: var(--ink);
  }
  .anti-persona-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1120px;
    margin: 0 auto;
  }
  .anti-persona-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--mpv-radius-md, 14px);
    padding: 28px 26px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .anti-persona-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--mpv-red-soft, #F8E4E0);
    color: var(--mpv-red, #B23A2C);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
  }
  .anti-persona-item p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--ink-2);
  }

  /* Case studies — "Results may vary." disclaimer */
  .case-disclaimer {
    margin-top: 10px;
    font-size: 11px;
    letter-spacing: 0.04em;
    color: var(--muted-2);
    font-style: italic;
  }
  .cases-footer {
    text-align: center;
    margin-top: 36px;
  }
  .cases-footer-link {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
    transition: color 0.2s;
  }
  .cases-footer-link:hover { color: var(--accent-dark); }

  /* Founders footer link */
  .founders-footer {
    text-align: center;
    margin-top: 36px;
  }
  .founders-footer-link {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
    transition: color 0.2s;
  }
  .founders-footer-link:hover { color: var(--accent-dark); }

  /* CTA secondary path — sits inside the dark .cta-box, needs light text */
  .cta-secondary {
    position: relative;
    margin-top: 22px;
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
  }
  .cta-secondary a {
    color: #fff;
    border-bottom: 1.5px solid var(--accent);
    text-decoration: none;
    padding-bottom: 1px;
    font-weight: 600;
    transition: color 0.2s;
  }
  .cta-secondary a:hover { color: var(--accent); }

  /* Services intro — inline service hyperlinks */
  .services-header p a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1.5px solid var(--accent);
    padding-bottom: 1px;
    font-weight: 600;
    transition: color 0.2s;
  }
  .services-header p a:hover { color: var(--accent-dark); }

  /* Hero H1: tune size for the longer locked headline.
     Locked H1 runs ~14 words; reduce upper clamp so it doesn't wrap
     to 4+ lines on desktop. */
  .hero h1 {
    font-size: clamp(40px, 4.4vw, 58px);
  }

  /* Responsive — collapse 3P360 + anti-persona grids on tablet/mobile */
  @media (max-width: 960px) {
    .proprietary-card { padding: 48px 32px; }
    .proprietary-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .proprietary-stat-num { font-size: 28px; }
    .anti-persona-grid { grid-template-columns: 1fr; max-width: 640px; }
  }
  @media (max-width: 560px) {
    .proprietary { padding: 56px 0; }
    .proprietary-card { padding: 36px 22px; }
    .proprietary-card p { font-size: 15px; }
    .proprietary-stats { grid-template-columns: 1fr; gap: 18px; text-align: center; }
    .anti-persona { padding: 56px 0; }
    .hero-aeo { font-size: 12.5px; padding-left: 12px; }
  }

/* ============================================================
   MOBILE NAV — hamburger + slide-down menu (added 2026-06-11)
   ============================================================ */
.nav-toggle { display: none; }
.mobile-menu { display: none; }

.nav-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    -webkit-tap-highlight-color: transparent;
}
.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink, #1a1a1a);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}
.header.menu-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header.menu-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.header.menu-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    flex-direction: column;
    padding: 16px 20px 32px;
    background: var(--bg, #faf7f2);
    overflow-y: auto;
    overscroll-behavior: contain;
}
.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1 1 auto;
}
.mobile-menu-list li { margin: 0; padding: 0; list-style: none; }
.mobile-menu-list a {
    display: block;
    padding: 18px 4px;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink, #1a1a1a);
    border-bottom: 1px solid var(--border, #e7e1d8);
}
.mobile-menu-list a:hover { color: var(--accent-dark, #cc9f00); }
.mobile-menu-cta {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
}

@media (max-width: 960px) {
    .nav-toggle { display: flex; }
    .header .btn-primary.header-cta { display: none; }
    .mobile-menu.is-open { display: flex; }
}

/* ============================================================
   BLOG / ARCHIVE INDEX (added 2026-06-11)
   ============================================================ */
.mpv-index-main { background: var(--bg); }

.mpv-blog-header {
    padding: 72px 0 40px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, var(--bg-2), var(--bg));
}
.mpv-blog-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 16px;
}
.mpv-blog-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--ink);
    margin: 0 auto 14px;
}
.mpv-blog-sub {
    font-size: 17px;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.mpv-blog-wrap { padding: 56px 0 80px; }

.mpv-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.mpv-post-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.mpv-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-2);
}

.mpv-post-card-thumb {
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bg-2);
}
.mpv-post-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.mpv-post-card:hover .mpv-post-card-thumb img { transform: scale(1.04); }

.mpv-post-card-thumb-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ink) 0%, #2a2a2a 55%, var(--accent-dark) 150%);
}
.mpv-post-card-thumb-fallback span {
    font-family: 'Fraunces', serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--accent);
    opacity: .9;
}

.mpv-post-card-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 24px 24px 26px;
}
.mpv-post-card-meta {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 12px;
}
.mpv-post-card-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.28;
    margin: 0 0 12px;
}
.mpv-post-card-title a {
    color: var(--ink);
    transition: color .2s;
}
.mpv-post-card-title a:hover { color: var(--accent-dark); }
.mpv-post-card-excerpt {
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 0 18px;
}
.mpv-post-card-more {
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color .2s;
}
.mpv-post-card-more span { transition: transform .2s; }
.mpv-post-card:hover .mpv-post-card-more { color: var(--accent-dark); }
.mpv-post-card:hover .mpv-post-card-more span { transform: translateX(4px); }

/* Pagination */
.mpv-pagination { margin-top: 56px; }
.mpv-pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.mpv-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
    transition: all .2s;
}
.mpv-pagination .page-numbers:hover { border-color: var(--ink); }
.mpv-pagination .page-numbers.current {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}
.mpv-pagination .page-numbers.dots { border: 0; background: transparent; }

.mpv-no-posts { text-align: center; color: var(--muted); padding: 60px 0; }

@media (max-width: 960px) {
    .mpv-posts-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .mpv-blog-header { padding: 56px 0 32px; }
    .mpv-blog-wrap { padding: 40px 0 64px; }
}
@media (max-width: 600px) {
    .mpv-posts-grid { grid-template-columns: 1fr; gap: 22px; }
}

/* ============================================================
   BLOG SINGLE-POST LAYOUT — brand-consistent article design
   Mirrors the hand-built .itv-aeo-container template so the 76
   migrated AEO posts match it. (consultant notes, 2026-06-11)
   - max row width 1290px (was full-width)
   - centered H1, date/byline removed in single.php
   - 40px gap below H1 before the black "answer" box
   - burnt-orange (#B45309) links + H2s on the cream background
   ============================================================ */
.mpv-single .mpv-container {
    max-width: 1290px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.mpv-single-header { padding-top: 40px; }

/* Centered H1 with 40px breathing room before the content/black box */
.mpv-single-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: clamp(38px, 4.6vw, 60px);
    line-height: 1.1;
}

/* Burnt-orange links + headings — contrast against the cream background */
.mpv-prose a { color: #B45309; text-decoration: none; }
.mpv-prose a:hover { text-decoration: underline; }
.mpv-prose h2 { color: #B45309; }

/* AEO "direct answer" black box */
.mpv-prose .aeo-answer-block {
    background: #0E0E0E;
    color: #FFFFFF;
    padding: 36px 44px;
    border-radius: 6px;
    margin-bottom: 24px;
    line-height: 1.6;
}
.mpv-prose .aeo-answer-block strong { color: #FFFFFF; }
.mpv-prose .aeo-answer-block a { color: #FFFFFF; text-decoration: underline; }

@media (max-width: 768px) {
    .mpv-prose .aeo-answer-block { padding: 28px 24px; }
}
