  /* =====================================================================
   Partnership / collab microsite — shared component styles.
   Layers on top of homepage.css and uses its :root tokens
   (--ink, --ink-soft, --ink-mute, --line, --orange, --orange-2,
   --blue-soft, --bg-3, --shadow-sm, --shadow-md).
   Linked by every page under /partnerships/**.
   Class prefix: .maa-* + component classes (gap-card, lane, tier, outcome).
   ===================================================================== */

  .maa-hero { position: relative; overflow: hidden; padding: 80px 0 0; }
  .maa-hero .glow-1, .maa-hero .glow-2 {
    position: absolute; border-radius: 50%; pointer-events: none;
    filter: blur(80px); opacity: 0.6;
  }
  .maa-hero .glow-1 {
    width: 660px; height: 660px; top: -220px; right: -180px;
    background: radial-gradient(closest-side, rgba(255,153,0,0.32), transparent 70%);
  }
  .maa-hero .glow-2 {
    width: 560px; height: 560px; top: 80px; left: -200px;
    background: radial-gradient(closest-side, rgba(252,236,219,0.85), transparent 70%);
  }
  .maa-hero .grid-bg {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(18,27,72,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(18,27,72,0.05) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 40%, transparent 80%);
    pointer-events: none; opacity: 0.5;
  }
  .maa-hero .container { position: relative; }
  .maa-hero .pill {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 14px 6px 6px; border-radius: 999px;
    background: #fff; border: 1px solid var(--line);
    box-shadow: var(--shadow-sm); font-size: 12.5px; color: var(--ink-soft);
  }
  .maa-hero .pill .badge-aws {
    padding: 3px 9px; border-radius: 999px;
    background: rgba(255,153,0,0.15); color: var(--orange-2);
    font-weight: 700; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  }
  .maa-hero h1 {
    font-family: 'Inter', sans-serif; font-size: 66px; line-height: 1.03;
    letter-spacing: -0.035em; font-weight: 600; color: var(--ink);
    margin: 22px 0 0; max-width: 960px;
  }
  .maa-hero h1 .mute { color: var(--ink-mute); }
  .maa-hero h1 .accent { color: var(--orange-2); position: relative; display: inline-block; }
  .maa-hero h1 .accent::after {
    content: ''; position: absolute; left: -2px; right: -2px; bottom: 6px;
    height: 12px; background: rgba(255,153,0,0.30); border-radius: 2px; z-index: -1;
  }
  .maa-hero .hero-kicker {
    font-size: 17px; color: var(--orange-2); font-weight: 500;
    margin: 16px 0 0; max-width: 720px; letter-spacing: -0.01em;
  }
  .maa-hero .lede {
    font-size: 19px; line-height: 1.55; color: var(--ink-soft);
    max-width: 720px; margin: 22px 0 0;
  }
  .maa-hero .lede strong { color: var(--ink); font-weight: 600; }
  .maa-hero .ctas { display: flex; gap: 12px; align-items: center; margin-top: 30px; flex-wrap: wrap; }
  .maa-hero .ctas .micro { color: var(--ink-mute); font-size: 13px; margin-left: 6px; }

  .btn-aws { background: var(--orange); color: #fff; box-shadow: 0 6px 18px rgba(255,153,0,0.25); }
  .btn-aws:hover { background: var(--orange-2); }

  .maa-stats {
    margin-top: 50px; display: grid; grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line); border-radius: 14px; background: #fff;
    overflow: hidden; box-shadow: var(--shadow-sm);
  }
  .maa-stats .m { padding: 24px 26px; }
  .maa-stats .m + .m { border-left: 1px solid var(--line); }
  .maa-stats .n {
    font-size: 34px; font-weight: 700; letter-spacing: -0.03em;
    color: var(--ink); font-variant-numeric: tabular-nums;
  }
  .maa-stats .n .alt { color: var(--orange-2); }
  .maa-stats .l {
    font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--ink-mute); margin-top: 6px;
  }

  /* The gap — problem cards */
  .maa-gap { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .gap-card {
    position: relative; overflow: hidden;
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    padding: 28px 26px; box-shadow: var(--shadow-sm);
    transition: box-shadow .3s cubic-bezier(0.16,1,0.3,1), transform .3s cubic-bezier(0.16,1,0.3,1), border-color .3s ease;
  }
  .gap-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(18,27,72,0.13);
    border-color: rgba(255,153,0,0.35);
  }
  /* faint watermark numeral — depth, not decoration */
  .gap-card .ghost {
    position: absolute; top: -14px; right: 6px;
    font-family: 'Inter', sans-serif; font-size: 104px; font-weight: 800;
    line-height: 1; letter-spacing: -0.05em; color: rgba(18,27,72,0.045);
    pointer-events: none; user-select: none;
    transition: color .3s ease;
  }
  .gap-card:hover .ghost { color: rgba(255,153,0,0.10); }
  .gap-card .ico {
    position: relative; width: 46px; height: 46px; border-radius: 11px;
    background: rgba(255,153,0,0.13); color: var(--orange-2);
    display: grid; place-items: center; margin-bottom: 18px;
    transition: background .3s ease, transform .3s cubic-bezier(0.16,1,0.3,1);
  }
  .gap-card:hover .ico { background: rgba(255,153,0,0.20); transform: scale(1.06); }
  .gap-card h4 {
    position: relative;
    font-family: 'Inter', sans-serif; font-size: 19px; font-weight: 500;
    margin: 0 0 8px; letter-spacing: -0.015em;
  }
  .gap-card p { position: relative; font-size: 14.5px; color: var(--ink-mute); line-height: 1.55; margin: 0; }

  /* What you get — feature list */
  .maa-get { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 44px; }
  .get-item {
    background: #fff; border: 1px solid var(--line); border-radius: 12px;
    padding: 24px 26px; box-shadow: var(--shadow-sm); display: flex; gap: 16px; align-items: flex-start;
    transition: box-shadow .3s cubic-bezier(0.16,1,0.3,1), transform .3s cubic-bezier(0.16,1,0.3,1);
  }
  .get-item:hover { box-shadow: 0 10px 28px rgba(18,27,72,0.09); transform: translateY(-2px); }
  .get-item .tick {
    width: 34px; height: 34px; flex-shrink: 0; border-radius: 9px;
    background: rgba(255,153,0,0.13); color: var(--orange-2);
    display: grid; place-items: center;
  }
  .get-item h4 { font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 500; margin: 0 0 6px; letter-spacing: -0.015em; }
  .get-item p { font-size: 14px; color: var(--ink-mute); line-height: 1.55; margin: 0; }

  /* Who does what — three lanes + AWS base */
  .maa-flow { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .lane {
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    padding: 26px 24px; box-shadow: var(--shadow-sm); position: relative;
    transition: box-shadow .3s cubic-bezier(0.16,1,0.3,1), transform .3s cubic-bezier(0.16,1,0.3,1);
  }
  .lane:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(18,27,72,0.10); }
  .lane .lane-head { display: flex; align-items: center; gap: 11px; }
  .lane .ico {
    width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px;
    display: grid; place-items: center;
    transition: transform .3s cubic-bezier(0.16,1,0.3,1);
  }
  .lane:hover .ico { transform: scale(1.08); }
  .lane.you .ico { background: var(--blue-soft); color: #2a3990; }
  .lane.aut .ico { background: rgba(255,153,0,0.13); color: var(--orange-2); }
  .lane.obp .ico { background: rgba(34,139,110,0.12); color: #17795c; }
  .lane .tag {
    display: inline-flex; padding: 4px 11px; border-radius: 999px;
    font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 10.5px;
    letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  }
  .lane.you .tag { background: var(--blue-soft); color: #2a3990; }
  .lane.aut .tag { background: rgba(255,153,0,0.13); color: var(--orange-2); }
  .lane.obp .tag { background: rgba(34,139,110,0.12); color: #17795c; }
  .lane h4 { font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 500; margin: 16px 0 12px; letter-spacing: -0.015em; }
  .lane ul { list-style: none; margin: 0; padding: 0; }
  .lane li {
    font-size: 14px; color: var(--ink-soft); line-height: 1.5;
    padding: 8px 0 8px 22px; position: relative; border-top: 1px solid var(--line);
  }
  .lane li:first-child { border-top: 0; }
  .lane li::before {
    content: ''; position: absolute; left: 2px; top: 15px;
    width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
  }
  .maa-base {
    margin-top: 14px; background: linear-gradient(135deg, #0f1848 0%, #1b2a72 100%);
    border-radius: 14px; padding: 24px 28px; color: #fff;
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  }
  .maa-base .bl {
    font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11px;
    letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); flex-shrink: 0;
  }
  .maa-base .chips { display: flex; gap: 8px; flex-wrap: wrap; }
  .maa-base .chip {
    font-size: 13px; padding: 6px 12px; border-radius: 999px;
    background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.16); color: #fff;
  }

  /* Tiers */
  .maa-tiers { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
  .tier {
    position: relative;
    background: #fff; border: 1px solid var(--line); border-radius: 16px;
    padding: 32px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
    height: 100%;
    transition: box-shadow .3s cubic-bezier(0.16,1,0.3,1), transform .3s cubic-bezier(0.16,1,0.3,1);
  }
  .tier:hover { box-shadow: 0 16px 40px rgba(18,27,72,0.12); transform: translateY(-6px); }
  .tier.feature { border-color: var(--orange); box-shadow: 0 16px 44px rgba(255,153,0,0.16); }
  .tier.feature:hover { box-shadow: 0 24px 56px rgba(255,153,0,0.24); }
  .tier .tname { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange-2); font-weight: 600; }
  .tier .tsum { font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 400; letter-spacing: -0.02em; margin: 14px 0 4px; line-height: 1.2; }
  .tier .tbill { font-size: 13px; color: var(--ink-mute); margin: 0 0 20px; }
  .tier ul { list-style: none; margin: 0 0 24px; padding: 0; flex: 1; }
  .tier li { font-size: 14px; color: var(--ink-soft); line-height: 1.5; padding: 9px 0 9px 26px; position: relative; border-top: 1px solid var(--line); }
  .tier li:first-child { border-top: 0; }
  .tier li::before {
    content: '✓'; position: absolute; left: 0; top: 8px; color: var(--orange-2);
    font-size: 13px; font-weight: 700;
  }
  .tier li .em { color: var(--ink); font-weight: 600; }
  /* Floating badge so all three cards keep their content top aligned */
  .tier .ribbon {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    white-space: nowrap; font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
    color: #fff; background: var(--orange); padding: 5px 14px; border-radius: 999px;
    box-shadow: 0 6px 16px rgba(255,153,0,0.30);
  }

  /* Outcomes band */
  .maa-outcomes { margin-top: 50px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .outcome .n {
    font-size: 40px; font-weight: 700; letter-spacing: -0.03em; color: var(--ink);
    font-variant-numeric: tabular-nums;
  }
  .outcome .n .alt { color: var(--orange-2); }
  .outcome p { font-size: 15px; color: var(--ink-soft); line-height: 1.55; margin: 10px 0 0; }

  .demo-band.aws-band .demo-card {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%);
    box-shadow: 0 30px 60px -20px rgba(255,153,0,0.35);
  }
  .demo-band.aws-band .btn-light { color: var(--orange-2); }

  /* Pill wraps instead of forcing horizontal overflow on small screens */
  .maa-hero .pill { flex-wrap: wrap; max-width: 100%; }

  @media (max-width: 900px) {
    .maa-hero h1 { font-size: 44px; }
    .maa-stats { grid-template-columns: 1fr; }
    .maa-stats .m + .m { border-left: 0; border-top: 1px solid var(--line); }
    .maa-gap, .maa-get, .maa-flow, .maa-tiers, .maa-outcomes { grid-template-columns: 1fr; }
    .maa-outcomes { gap: 28px; }
  }
  @media (max-width: 600px) {
    .maa-hero { padding-top: 56px; }
    .maa-hero h1 { font-size: 33px; line-height: 1.08; margin-top: 18px; }
    .maa-hero .pill { font-size: 11.5px; }
    .maa-hero .hero-kicker { font-size: 15px; }
    .maa-hero .lede { font-size: 16px; }
    .maa-hero .ctas .micro { margin-left: 0; }
    .maa-stats .n { font-size: 30px; }
    .outcome .n { font-size: 34px; }
  }

  /* Process steps — a numbered sequence (e.g. a fixed-scope sprint). 4-up on
     desktop, 2-up on tablet, stacked on mobile. Reuses the gap-card look. */
  .maa-steps { margin-top: 44px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .step-card {
    position: relative; overflow: hidden;
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    padding: 26px 22px; box-shadow: var(--shadow-sm);
    transition: box-shadow .3s cubic-bezier(0.16,1,0.3,1), transform .3s cubic-bezier(0.16,1,0.3,1), border-color .3s ease;
  }
  .step-card:hover {
    transform: translateY(-6px); box-shadow: 0 18px 40px rgba(18,27,72,0.13);
    border-color: rgba(255,153,0,0.35);
  }
  .step-card .ghost {
    position: absolute; top: -12px; right: 6px;
    font-family: 'Inter', sans-serif; font-size: 92px; font-weight: 800;
    line-height: 1; letter-spacing: -0.05em; color: rgba(18,27,72,0.045);
    pointer-events: none; user-select: none; transition: color .3s ease;
  }
  .step-card:hover .ghost { color: rgba(255,153,0,0.10); }
  .step-card .ico {
    position: relative; width: 44px; height: 44px; border-radius: 11px;
    background: rgba(255,153,0,0.13); color: var(--orange-2);
    display: grid; place-items: center; margin-bottom: 16px;
    transition: background .3s ease, transform .3s cubic-bezier(0.16,1,0.3,1);
  }
  .step-card:hover .ico { background: rgba(255,153,0,0.20); transform: scale(1.06); }
  .step-card .sn {
    position: relative; font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--orange-2); font-weight: 600;
  }
  .step-card h4 {
    position: relative; font-family: 'Inter', sans-serif; font-size: 17px;
    font-weight: 500; margin: 6px 0 8px; letter-spacing: -0.015em;
  }
  .step-card p { position: relative; font-size: 14px; color: var(--ink-mute); line-height: 1.55; margin: 0; }

  /* A single wide engagement panel (fixed-scope offers with no tiers). */
  .maa-panel {
    margin-top: 44px; background: #fff; border: 1px solid var(--line);
    border-radius: 18px; box-shadow: var(--shadow-md);
    padding: 40px 44px; display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 44px; align-items: center;
  }
  .maa-panel .p-copy h3 {
    font-family: 'Inter', sans-serif; font-size: 26px; font-weight: 400;
    letter-spacing: -0.025em; line-height: 1.2; margin: 0 0 14px;
  }
  .maa-panel .p-copy p { font-size: 16px; color: var(--ink-soft); line-height: 1.6; margin: 0 0 22px; }
  .maa-panel .p-facts { display: grid; gap: 12px; }
  .maa-panel .fact {
    display: flex; align-items: baseline; gap: 14px;
    padding: 16px 20px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg-3);
  }
  .maa-panel .fact .fn {
    font-size: 22px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink);
    font-variant-numeric: tabular-nums; white-space: nowrap;
  }
  .maa-panel .fact .fn .alt { color: var(--orange-2); }
  .maa-panel .fact .fl { font-size: 13.5px; color: var(--ink-mute); line-height: 1.45; }

  @media (max-width: 900px) {
    .maa-steps { grid-template-columns: repeat(2, 1fr); }
    .maa-panel { grid-template-columns: 1fr; gap: 28px; padding: 30px 26px; }
  }
  @media (max-width: 600px) {
    .maa-steps { grid-template-columns: 1fr; }
  }
