:root {
  --ink: #121c2b;
  --ink-soft: #354158;
  --paper: #f5f7f4;
  --white: #ffffff;
  --lime: #bcf23d;
  --lime-dark: #8fca1d;
  --teal: #0d7d79;
  --teal-deep: #075d5b;
  --blue: #376bfa;
  --purple: #7968ed;
  --line: rgba(18, 28, 43, .14);
  --shadow: 0 30px 80px rgba(9, 24, 43, .16);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, input { font: inherit; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; background: #fff; padding: .75rem 1rem; border-radius: .5rem; }
.skip-link:focus { top: 1rem; }

.site-header {
  width: min(1460px, calc(100% - 48px));
  height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
  position: relative;
  z-index: 20;
}
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; min-width: 295px; }
.brand img, .site-footer img { width: 132px; height: auto; object-fit: contain; }
.brand-divider { width: 1px; height: 28px; background: var(--line); }
.acbm-wordmark { font-weight: 800; font-size: .72rem; letter-spacing: .16em; color: var(--ink-soft); }
.site-header nav { display: flex; gap: 30px; margin-left: auto; }
.site-header nav a { font-size: .9rem; font-weight: 700; text-decoration: none; color: var(--ink-soft); }
.site-header nav a:hover { color: var(--teal); }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 15px 22px; border-radius: 999px; font-weight: 800; text-decoration: none; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-small { padding: 11px 18px; font-size: .86rem; }
.button-primary { background: var(--ink); color: #fff; box-shadow: 0 12px 30px rgba(18, 28, 43, .2); }
.button-primary:hover { background: var(--teal-deep); }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.62); }
.button-light { background: var(--lime); color: var(--ink); }
.text-link { font-weight: 800; text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 4px; }

.hero {
  width: min(1760px, calc(100% - 24px));
  min-height: 780px;
  margin: 0 auto 32px;
  padding: 0;
  display: block;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f1f6ef 0%, #eaf3ef 42%, #e6efe8 100%);
  border-radius: 34px;
  border: 1px solid rgba(13, 125, 121, .09);
}
.ambient { position: absolute; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.ambient-one { width: 430px; height: 430px; background: rgba(188, 242, 61, .22); left: -170px; bottom: -230px; }
.ambient-two { width: 520px; height: 520px; background: rgba(55, 107, 250, .10); right: 19%; top: -350px; }
.hero-copy { position: absolute; z-index: 5; left: clamp(42px, 5vw, 88px); top: 86px; width: min(47%, 680px); color: white; }
.hero-copy-slide { display: none; }
.hero-copy-slide.is-active { display: block; animation: copyIn .5s ease both; }
@keyframes copyIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.copy-joke { left: auto; right: clamp(42px, 5vw, 88px); width: min(43%, 640px); }
.copy-close { top: 108px; width: min(43%, 620px); }
.copy-sentry { top: 112px; width: min(45%, 660px); }
.copy-sentry h1 em { color: #27bff3; }
.copy-m365 { top: 92px; width: min(46%, 690px); }
.copy-m365 h1 { font-size: clamp(3rem, 4.25vw, 5.1rem); }
.hero-stage { position: relative; z-index: 2; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 21px; color: #d9f8f2; font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 900; }
.eyebrow span { width: 26px; height: 2px; background: var(--lime); }
.eyebrow.dark { color: var(--teal-deep); }
.hero .eyebrow { color: #e9fff1; }
.hero-copy h1 { margin: 0; font-size: clamp(3.25rem, 4.8vw, 5.7rem); line-height: .92; letter-spacing: -.065em; font-weight: 820; }
.hero-copy h1 em { display: inline-block; color: var(--lime); font-style: normal; }
.hero-lede { max-width: 590px; margin: 24px 0 20px; color: rgba(255,255,255,.82); font-size: 1.12rem; line-height: 1.6; }
.hero-benefits { max-width: 620px; margin: 0 0 26px; padding: 0; display: grid; gap: 12px; list-style: none; }
.hero-benefits li { position: relative; padding-left: 32px; display: grid; color: white; }
.hero-benefits li::before { content: "✓"; position: absolute; left: 0; top: 1px; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; color: #123142; background: var(--lime); font-size: .7rem; font-weight: 900; }
.hero-benefits strong { font-size: .92rem; }
.hero-benefits span { color: rgba(255,255,255,.68); font-size: .78rem; }
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.hero-proofline { display: flex; align-items: center; gap: 13px; margin-top: 24px; color: rgba(255,255,255,.72); }
.hero-proofline p { margin: 0; font-size: .88rem; }
.proof-icon { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--lime); color: var(--ink); font-weight: 900; }
.hero-after-actions { width: min(1400px, calc(100% - 48px)); margin: 4px auto 0; display: flex; align-items: center; gap: 28px; }
.hero-after-actions .button-primary { background: var(--teal-deep); }

.carousel { position: relative; }
.slide { display: none; }
.slide.is-active { display: block; animation: slideIn .55s ease both; }
@keyframes slideIn { from { opacity: 0; transform: translateY(10px) scale(.992); } to { opacity: 1; transform: none; } }
.media-frame { height: 780px; position: relative; overflow: hidden; border-radius: 34px; box-shadow: none; background: #081623; }
.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; background: #06131d; }
.story-frame { display: block; color: white; text-decoration: none; }
.story-frame > img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .7s ease; }
.home-origin-frame > img { object-position: center center; }
.home-origin-frame > video,
.home-origin-frame > .poster-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.home-origin-frame > video {
  display: block;
  background: #06131d;
}
.home-origin-frame > .poster-fallback { display: none; }
.home-origin-frame.video-failed > video { display: none; }
.home-origin-frame.video-failed > .poster-fallback { display: block; }
.clara-motion-frame > video,
.clara-motion-frame > .clara-poster-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.clara-motion-frame > video {
  display: block;
  background: #071d18;
}
.clara-motion-frame > .clara-poster-fallback { display: none; }
.clara-motion-frame.video-failed > video { display: none; }
.clara-motion-frame.video-failed > .clara-poster-fallback { display: block; }
.slide-home.is-active .home-origin-frame > img {
  animation: homeScenicDrift 14s cubic-bezier(.22, .61, .36, 1) both;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .home-origin-frame > video { display: none; }
  .home-origin-frame > .poster-fallback { display: block; }
  .clara-motion-frame > video { display: none; }
  .clara-motion-frame > .clara-poster-fallback { display: block; }
}
.water-motion {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 47%;
  overflow: hidden;
  pointer-events: none;
  opacity: .48;
  mix-blend-mode: soft-light;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.28) 18%, #000 52%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.28) 18%, #000 52%);
}
.water-motion::before,
.water-motion::after {
  content: "";
  position: absolute;
  inset: -32% -12%;
  background:
    repeating-radial-gradient(ellipse at 52% 10%, transparent 0 10px, rgba(255,255,255,.28) 11px 12px, transparent 13px 26px),
    repeating-linear-gradient(102deg, transparent 0 22px, rgba(119,255,237,.18) 24px 25px, transparent 28px 54px);
  filter: blur(.45px);
  transform: translate3d(-2%, 0, 0) scale(1.05);
  animation: waterGlide 9s ease-in-out infinite alternate;
  will-change: transform, opacity;
}
.water-motion::after {
  opacity: .52;
  background:
    repeating-radial-gradient(ellipse at 42% 0%, transparent 0 17px, rgba(255,255,255,.22) 18px 19px, transparent 20px 38px);
  transform: translate3d(3%, 4%, 0) scale(1.12);
  animation: waterGlideReverse 12s ease-in-out infinite alternate;
}
@keyframes homeScenicDrift {
  from { transform: scale(1.025) translate3d(0, 0, 0); }
  to { transform: scale(1.075) translate3d(-.8%, -.45%, 0); }
}
@keyframes waterGlide {
  from { transform: translate3d(-2%, 0, 0) scale(1.05); opacity: .48; }
  to { transform: translate3d(4%, 5%, 0) scale(1.12); opacity: .82; }
}
@keyframes waterGlideReverse {
  from { transform: translate3d(3%, 4%, 0) scale(1.12); opacity: .38; }
  to { transform: translate3d(-5%, -2%, 0) scale(1.04); opacity: .68; }
}
.story-frame:hover > img { transform: scale(1.025); }
.media-shade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(5,40,56,.96) 0%, rgba(8,57,73,.82) 42%, rgba(26,89,105,.40) 68%, rgba(5,19,28,.30) 100%), linear-gradient(0deg, rgba(4,15,24,.30), transparent 55%); }
.media-caption { position: absolute; left: auto; right: clamp(34px, 5vw, 86px); top: 220px; bottom: auto; width: min(35%, 470px); padding: 30px; color: var(--ink); background: rgba(255,255,255,.90); border: 1px solid rgba(255,255,255,.48); border-radius: 18px; box-shadow: 0 24px 70px rgba(3,18,29,.24); backdrop-filter: blur(12px); z-index: 3; pointer-events: none; }
.media-kicker { color: var(--teal-deep); text-transform: uppercase; letter-spacing: .13em; font-size: .68rem; font-weight: 900; }
.media-caption h2 { margin: 8px 0 7px; font-size: clamp(1.8rem, 2.45vw, 2.75rem); line-height: 1.02; letter-spacing: -.045em; }
.media-caption p { max-width: 640px; margin: 0; color: var(--ink-soft); }
.story-link { position: absolute; z-index: 4; right: clamp(64px, 7.25vw, 124px); top: 445px; display: inline-flex; gap: 10px; align-items: center; color: white; background: var(--teal-deep); border-radius: 999px; padding: 12px 18px; font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.story-link b { font-size: 1rem; }
.slide-avalanche .media-caption { pointer-events: auto; }
.slide-avalanche .media-caption .story-link { position: static; margin-top: 18px; }
.slide-joke .media-caption { left: clamp(34px, 5vw, 86px); right: auto; top: 238px; width: min(34%, 440px); }
.slide-joke .story-link { left: clamp(64px, 7.25vw, 124px); right: auto; top: 468px; }
.slide-close .briefing-app { position: absolute; right: clamp(34px, 5vw, 86px); top: 66px; width: min(47%, 650px); }
.slide-close .briefing-caption { left: auto; right: clamp(34px, 5vw, 86px); top: 438px; width: min(42%, 560px); }
.sentry-frame > img { object-fit: contain; object-position: right center; transform: none !important; background: #020a11; }
.sentry-shade { background: linear-gradient(90deg, rgba(2,10,17,.76) 0%, rgba(2,12,20,.40) 44%, rgba(3,17,28,.08) 72%, rgba(3,13,22,.18) 100%); }
.m365-frame { background: radial-gradient(circle at 76% 28%, #2b6d91 0%, #123e59 32%, #071b2c 72%); }
.m365-frame > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.m365-bg-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,16,29,.88) 0%, rgba(4,22,38,.62) 43%, rgba(4,18,30,.16) 72%, rgba(3,14,24,.34) 100%); }
.m365-orbit { position: absolute; border: 1px solid rgba(127,229,220,.16); border-radius: 50%; }
.m365-orbit-one { width: 560px; height: 560px; right: -90px; top: -150px; }
.m365-orbit-two { width: 380px; height: 380px; right: 160px; bottom: -210px; }
.m365-hero-visual { position: absolute; z-index: 2; right: clamp(34px, 5vw, 86px); top: 155px; width: min(42%, 590px); display: grid; gap: 14px; }
.m365-hero-card { min-height: 126px; padding: 22px; display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 16px; color: var(--ink); background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.48); border-radius: 18px; box-shadow: 0 22px 60px rgba(1,13,23,.30); backdrop-filter: blur(10px); }
.m365-hero-card > b { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; color: white; font-size: 1.3rem; }
.m365-hero-card > span { display: grid; }
.m365-hero-card strong { font-size: 1.08rem; }
.m365-hero-card small { color: #6d7888; }
.m365-hero-card i { padding: 6px 9px; border-radius: 999px; color: #19704e; background: #e0f5e9; font-size: .62rem; font-style: normal; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; }
.teams-card > b { background: #6264a7; }
.sharepoint-card > b { background: #067b7b; }
.m365-route { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.60); font-size: .66rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.m365-route span { height: 1px; flex: 1; background: rgba(255,255,255,.20); }
.m365-route em { font-style: normal; white-space: nowrap; }
.m365-link { left: auto; right: clamp(64px, 7.25vw, 124px); top: 558px; background: #067b7b; }
.warm-frame { background: linear-gradient(135deg, #492032, #0d675d); }
.carousel-controls { position: absolute; z-index: 7; left: 55px; right: 55px; bottom: 22px; display: grid; grid-template-columns: 44px 1fr 44px; align-items: center; gap: 12px; margin-top: 0; }
.carousel-arrow { width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; background: rgba(5,25,35,.40); color: white; cursor: pointer; font-weight: 900; transition: .2s ease; }
.carousel-arrow:hover { background: var(--ink); color: white; }
.carousel-dots { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.dot { border: 0; border-bottom: 2px solid rgba(255,255,255,.25); background: transparent; padding: 8px 2px 10px; text-align: left; color: rgba(255,255,255,.58); font-size: .72rem; font-weight: 800; cursor: pointer; }
.dot span { color: rgba(255,255,255,.42); margin-right: 6px; }
.dot.is-active { color: white; border-color: var(--lime); }
.dot.is-active span { color: var(--lime); }

.briefing-frame { background: radial-gradient(circle at 65% 0%, #244f69 0%, #091a29 47%, #06111d 100%); padding: 28px 28px 145px; }
.briefing-glow { position: absolute; width: 340px; height: 340px; right: -80px; top: -140px; background: rgba(188,242,61,.14); filter: blur(18px); border-radius: 50%; }
.briefing-app { position: relative; overflow: hidden; background: rgba(255,255,255,.97); border-radius: 16px; box-shadow: 0 30px 70px rgba(0,0,0,.35); }
.briefing-topbar { display: flex; align-items: center; gap: 12px; padding: 15px 16px; border-bottom: 1px solid #e6e9ee; }
.briefing-topbar div { display: grid; }
.briefing-topbar small { color: #7a8391; font-size: .66rem; }
.clara-dot { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; color: #10212a; background: var(--lime); font-weight: 900; }
.clara-dot.large { width: 43px; height: 43px; border-radius: 13px; }
.status-live { margin-left: auto; background: #e5f8f0; color: #14714b; border-radius: 999px; padding: 4px 8px; font-size: .64rem; font-weight: 900; }
.briefing-body { padding: 18px; }
.briefing-title { display: grid; margin-bottom: 15px; }
.briefing-title span { color: #6e7784; font-size: .7rem; }
.briefing-title strong { font-size: 1.05rem; }
.signal { display: grid; grid-template-columns: 26px 1fr auto; align-items: center; gap: 10px; padding: 11px; border: 1px solid #e6e9ee; border-radius: 10px; margin-top: 8px; }
.signal > span { width: 23px; height: 23px; border-radius: 50%; display: grid; place-items: center; font-size: .58rem; font-weight: 900; }
.signal div { display: grid; }
.signal strong { font-size: .73rem; }
.signal small { color: #7b8390; font-size: .58rem; }
.signal b { font-size: .6rem; color: #526074; }
.signal-red > span { background: #ffe2df; color: #a72a21; }
.signal-amber > span { background: #fff1c8; color: #8a5d05; }
.signal-green > span { background: #dcf6e9; color: #15724a; }
.briefing-caption { top: 220px; bottom: auto; }
.briefing-caption p { font-size: .78rem; }

.quote-intro { width: min(1400px, calc(100% - 48px)); margin: 0 auto; padding: 92px 0 70px; }
.section-label { display: inline-block; margin-bottom: 24px; color: var(--teal-deep); font-weight: 900; text-transform: uppercase; letter-spacing: .13em; font-size: .7rem; }
.quote-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; }
.quote-card { min-height: 310px; margin: 0; padding: 38px; border-radius: var(--radius); display: flex; flex-direction: column; justify-content: space-between; }
.quote-card-featured { background: var(--ink); color: white; }
.quote-mark { width: 54px; height: 54px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; display: grid; place-items: center; color: var(--lime); font-family: Georgia, serif; font-size: 2rem; }
.quote-card p { margin: 20px 0 28px; max-width: 900px; font-size: clamp(1.28rem, 2vw, 2rem); line-height: 1.35; letter-spacing: -.025em; }
.quote-card footer { display: flex; align-items: center; gap: 13px; }
.quote-card footer span:last-child { display: grid; }
.quote-card small { opacity: .64; }
.avatar { width: 45px; height: 45px; border-radius: 50%; display: grid; place-items: center; font-weight: 900; }
.avatar-photo { background: var(--lime); color: var(--ink); }
.avatar-craig { overflow: hidden; background: #e9edf2; }
.avatar-craig img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.9); }
.founder-card { position: relative; background: white; border: 1px solid var(--line); }
.placeholder-tag { align-self: flex-start; padding: 5px 9px; border-radius: 999px; color: #775611; background: #fff0bd; font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 900; }
.quote-rail { margin-top: 20px; padding: 18px 22px; display: flex; align-items: center; gap: 17px; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: rgba(255,255,255,.54); color: var(--ink-soft); }
.quote-rail span { margin-right: auto; font-size: .68rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; color: var(--teal-deep); }
.quote-rail p { margin: 0; white-space: nowrap; font-weight: 750; font-size: .82rem; }
.quote-rail i { width: 4px; height: 4px; border-radius: 50%; background: var(--lime-dark); }

.comparison-section { background: #fff; padding: 110px max(24px, calc((100vw - 1400px) / 2)); }
.section-heading { display: grid; grid-template-columns: 1fr .75fr; gap: 60px; align-items: end; margin-bottom: 48px; }
.section-heading h2, .compact-heading h2 { margin: 0; font-size: clamp(2.6rem, 4.5vw, 4.9rem); line-height: .98; letter-spacing: -.055em; }
.section-heading > p { margin: 0; color: var(--ink-soft); font-size: 1.06rem; line-height: 1.75; }
.matrix-wrap { border: 1px solid var(--line); border-radius: 22px; overflow: hidden; box-shadow: 0 20px 60px rgba(18,28,43,.08); }
.matrix-note { padding: 10px 16px; background: #fff6d9; color: #765a14; font-size: .72rem; }
.matrix-note span { display: inline-block; margin-right: 10px; text-transform: uppercase; letter-spacing: .09em; font-weight: 900; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: .79rem; }
.comparison-table th, .comparison-table td { padding: 17px 13px; text-align: center; border-right: 1px solid #e5e8ec; border-bottom: 1px solid #e5e8ec; }
.comparison-table th:first-child, .comparison-table td:first-child { text-align: left; }
.comparison-table thead th { background: #f4f6f7; color: #485267; text-transform: uppercase; letter-spacing: .055em; font-size: .66rem; }
.comparison-table thead th:first-child { width: 22%; }
.comparison-table tbody th { color: var(--ink); font-size: .76rem; background: #fbfcfc; }
.comparison-table b { color: #168059; }
.comparison-table b.partial { color: #bd8010; }
.comparison-table b.no { color: #99a1ad; }
.comparison-table .cetova-col { background: var(--ink); color: white; min-width: 145px; }
.cetova-col img { display: block; width: 106px; margin: 0 auto 4px; filter: brightness(0) invert(1); }
.cetova-col span { color: var(--lime); font-size: .59rem; }
.comparison-table .cetova-cell { background: #f3f9e7; color: #24432d; font-weight: 800; }
.comparison-table .pain-row th, .comparison-table .pain-row td { background: #f0f2f4; color: #5e6675; font-size: .68rem; font-style: italic; }
.comparison-table tr:last-child th, .comparison-table tr:last-child td { border-bottom: 0; }
.comparison-table th:last-child, .comparison-table td:last-child { border-right: 0; }
.matrix-footnote { color: #7a8290; font-size: .7rem; text-align: right; }

.outcomes { width: min(1400px, calc(100% - 48px)); margin: 0 auto; padding: 120px 0; }
.compact-heading { display: block; max-width: 850px; margin-bottom: 50px; }
.outcome-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.outcome-card { min-height: 390px; display: flex; flex-direction: column; padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: white; transition: transform .25s ease, box-shadow .25s ease; }
.outcome-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(18,28,43,.09); }
.featured-outcome { background: var(--teal-deep); color: white; }
.outcome-number { margin-left: auto; color: #9aa2ae; font-size: .66rem; font-weight: 900; }
.featured-outcome .outcome-number { color: rgba(255,255,255,.5); }
.outcome-icon { width: 52px; height: 52px; margin: 42px 0 23px; border-radius: 15px; display: grid; place-items: center; background: #edf5dd; color: var(--teal-deep); font-size: 1.3rem; font-weight: 900; }
.featured-outcome .outcome-icon { background: var(--lime); color: var(--ink); }
.outcome-card h3 { margin: 0; font-size: 1.52rem; line-height: 1.15; letter-spacing: -.03em; }
.outcome-card p { color: #677083; font-size: .84rem; line-height: 1.65; }
.featured-outcome p { color: rgba(255,255,255,.67); }
.outcome-card a { margin-top: auto; font-size: .78rem; font-weight: 900; text-decoration: none; }
.featured-outcome a { color: var(--lime); }

.clara-story { background: var(--ink); color: white; padding: 120px max(24px, calc((100vw - 1400px) / 2)); display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.clara-copy h2, .m365-copy h2, .migration-section h2 { margin: 0; font-size: clamp(2.7rem, 4.6vw, 5rem); line-height: .98; letter-spacing: -.055em; }
.clara-copy > p:not(.eyebrow) { color: rgba(255,255,255,.66); line-height: 1.75; }
.clara-principles { margin-top: 35px; display: grid; gap: 12px; }
.clara-principles div { padding: 14px 0; display: grid; border-top: 1px solid rgba(255,255,255,.12); }
.clara-principles strong { color: var(--lime); }
.clara-principles span { color: rgba(255,255,255,.62); font-size: .8rem; }
.investigation-card { background: #f6f8f7; color: var(--ink); border-radius: 22px; padding: 18px; box-shadow: 0 40px 100px rgba(0,0,0,.35); transform: rotate(1deg); }
.investigation-header { display: flex; align-items: center; gap: 13px; padding: 8px 5px 17px; }
.investigation-header div { display: grid; }
.investigation-header small { color: #7c8491; }
.score { margin-left: auto; padding: 5px 9px; border-radius: 999px; background: #ffe4d8; color: #9a351e; font-size: .65rem; font-weight: 900; }
.readiness-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.readiness { padding: 22px; min-height: 140px; display: flex; flex-direction: column; border-radius: 15px; border: 1px solid #e3e6e8; background: white; }
.readiness span { color: #697283; font-size: .68rem; text-transform: uppercase; letter-spacing: .07em; font-weight: 900; }
.readiness strong { margin: 20px 0 2px; font-size: 1.4rem; }
.readiness small { color: #7c8491; font-size: .68rem; }
.readiness.red { box-shadow: inset 4px 0 #e86754; }
.readiness.amber { box-shadow: inset 4px 0 #e3a62b; }
.readiness.green { box-shadow: inset 4px 0 #36a66f; }
.audit-strip { margin-top: 10px; padding: 10px; display: flex; align-items: center; gap: 14px; color: #687183; font-size: .65rem; }
.audit-strip button { margin-left: auto; border: 0; background: var(--ink); color: #fff; padding: 8px 10px; border-radius: 8px; font-weight: 800; }

.m365-section { padding: 120px max(24px, calc((100vw - 1400px) / 2)); display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.m365-visual { padding: 45px; min-height: 480px; border-radius: 28px; display: flex; flex-direction: column; justify-content: center; gap: 20px; background: linear-gradient(145deg, #e8edf9, #f7f8fb); border: 1px solid var(--line); }
.destination { padding: 24px; display: flex; align-items: center; gap: 17px; background: white; border-radius: 16px; box-shadow: 0 18px 40px rgba(35,54,90,.1); }
.destination b { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; color: white; font-size: 1.2rem; }
.teams-destination b { background: #6264a7; }
.sharepoint-destination b { background: #067b7b; }
.destination span { display: grid; }
.destination small { color: #7a8391; }
.route-line { display: flex; align-items: center; gap: 12px; color: #7a8391; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.route-line i { height: 1px; flex: 1; background: #cfd5e2; }
.m365-copy .eyebrow { margin-bottom: 20px; }
.m365-copy > p:not(.eyebrow) { color: var(--ink-soft); line-height: 1.75; }
.m365-copy ul { padding: 0; margin: 30px 0 0; list-style: none; }
.m365-copy li { padding: 14px 0 14px 28px; border-top: 1px solid var(--line); position: relative; }
.m365-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }

.migration-section { padding: 120px max(24px, calc((100vw - 1400px) / 2)); background: linear-gradient(135deg, #075d5b, #0a7771); color: white; display: grid; grid-template-columns: 1fr 1fr; gap: 95px; align-items: center; }
.migration-section > div > p:not(.eyebrow) { color: rgba(255,255,255,.68); line-height: 1.75; max-width: 670px; }
.migration-steps { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.migration-steps li { padding: 20px; display: flex; align-items: center; gap: 18px; border-radius: 14px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.12); }
.migration-steps li > span { color: var(--lime); font-weight: 900; }
.migration-steps div { display: grid; }
.migration-steps small { color: rgba(255,255,255,.6); }

.foundation { padding: 120px max(24px, calc((100vw - 1400px) / 2)); background: white; }
.foundation-intro { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 55px; }
.foundation-intro > span { color: var(--teal-deep); font-size: .72rem; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.foundation-intro h2 { margin: 0; font-size: clamp(2.6rem, 4.5vw, 4.8rem); line-height: 1; letter-spacing: -.055em; text-align: right; }
.foundation-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.foundation-grid article { padding: 30px; min-height: 260px; border-right: 1px solid var(--line); }
.foundation-grid article:last-child { border-right: 0; }
.foundation-grid article > span { color: var(--teal); font-size: .68rem; font-weight: 900; letter-spacing: .1em; }
.foundation-grid h3 { margin: 55px 0 10px; font-size: 1.35rem; line-height: 1.14; }
.foundation-grid p { color: #70798a; font-size: .8rem; }

.resources { width: min(1400px, calc(100% - 48px)); margin: 0 auto; padding: 110px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.resource-copy h2 { margin: 0; font-size: clamp(2.65rem, 4.5vw, 4.8rem); line-height: .98; letter-spacing: -.055em; }
.resource-copy > p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.75; }
.resource-cards { display: grid; gap: 14px; }
.resource-cards a { min-height: 190px; padding: 25px; display: flex; flex-direction: column; justify-content: space-between; text-decoration: none; background: white; border: 1px solid var(--line); border-radius: 18px; transition: .2s ease; }
.resource-cards a:hover { transform: translateX(5px); border-color: var(--teal); }
.resource-cards span { color: var(--teal); text-transform: uppercase; letter-spacing: .08em; font-size: .65rem; font-weight: 900; }
.resource-cards strong { font-size: 1.45rem; }
.resource-cards small { color: #6d7686; }

.site-footer { min-height: 130px; padding: 32px max(24px, calc((100vw - 1400px) / 2)); display: flex; align-items: center; gap: 30px; color: rgba(255,255,255,.58); background: var(--ink); font-size: .72rem; }
.site-footer img { filter: brightness(0) invert(1); }
.site-footer p { margin: 0 auto 0 0; }
.concept-toast { position: fixed; z-index: 99; left: 50%; bottom: 24px; transform: translate(-50%, 120px); opacity: 0; padding: 13px 18px; color: white; background: var(--ink); border-radius: 999px; box-shadow: var(--shadow); font-size: .78rem; transition: .35s ease; }
.concept-toast.is-visible { transform: translate(-50%, 0); opacity: 1; }

/* Story detail pages */
.story-page { background: #edf2ed; }
.story-header { height: 92px; }
.story-header .text-link { margin-left: auto; }
.story-hero { width: min(1760px, calc(100% - 24px)); min-height: 780px; margin: 0 auto; position: relative; overflow: hidden; border-radius: 34px; background: var(--ink); color: white; }
.story-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.story-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,13,22,.96) 0%, rgba(5,13,22,.68) 42%, rgba(5,13,22,.08) 75%), linear-gradient(0deg, rgba(5,13,22,.42), transparent 50%); }
.story-hero-copy { position: absolute; z-index: 2; left: clamp(28px, 6vw, 108px); bottom: clamp(42px, 8vw, 120px); max-width: 780px; }
.story-hero-copy h1 { margin: 0; font-size: clamp(3.4rem, 6.4vw, 7.3rem); line-height: .9; letter-spacing: -.065em; }
.story-hero-copy > p:last-child { max-width: 630px; margin: 28px 0 0; color: rgba(255,255,255,.75); font-size: 1.12rem; line-height: 1.7; }
.story-watch { width: min(1400px, calc(100% - 48px)); margin: 0 auto; padding: 110px 0; display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: center; }
.story-watch-copy h2 { margin: 0; font-size: clamp(2.7rem, 4.6vw, 5rem); line-height: .98; letter-spacing: -.055em; }
.story-watch-copy p { color: var(--ink-soft); line-height: 1.75; }
.story-watch video { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 24px; background: #071521; box-shadow: var(--shadow); }
.story-points { width: min(1400px, calc(100% - 48px)); margin: 0 auto 110px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: white; }
.story-points article { min-height: 290px; padding: 34px; border-right: 1px solid var(--line); }
.story-points article:last-child { border-right: 0; }
.story-points span { color: var(--teal); font-size: .7rem; font-weight: 900; letter-spacing: .1em; }
.story-points h3 { margin: 70px 0 12px; font-size: 1.55rem; }
.story-points p { color: #6a7484; line-height: 1.7; }
.story-cta { padding: 110px max(24px, calc((100vw - 1400px) / 2)); color: white; background: linear-gradient(135deg, var(--teal-deep), #07837a); }
.story-cta h2 { max-width: 980px; margin: 0 0 36px; font-size: clamp(3rem, 5.4vw, 6rem); line-height: .96; letter-spacing: -.06em; }

@media (max-width: 1180px) {
  .site-header nav { display: none; }
  .hero { min-height: 820px; }
  .hero-copy { width: 48%; }
  .hero-stage { width: 100%; }
  .media-frame { height: 820px; }
  .media-caption { width: 39%; top: 235px; }
  .story-link { top: 470px; }
  .outcome-grid, .foundation-grid { grid-template-columns: 1fr 1fr; }
  .foundation-grid article:nth-child(2) { border-right: 0; }
  .foundation-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .comparison-section { overflow-x: hidden; }
  .matrix-wrap { overflow-x: auto; }
  .comparison-table { min-width: 1080px; }
}

@media (max-width: 820px) {
  .site-header { width: calc(100% - 28px); }
  .brand { min-width: 0; }
  .brand-divider, .acbm-wordmark, .site-header > .button { display: none; }
  .hero { width: calc(100% - 20px); min-height: 920px; padding: 0; border-radius: 24px; }
  .hero-copy { left: 30px; right: 30px; top: 48px; width: auto; max-width: none; }
  .copy-joke, .copy-close, .copy-sentry, .copy-m365 { left: 30px; right: 30px; top: 48px; width: auto; }
  .copy-m365 h1 { font-size: 3rem; }
  .hero-copy h1 { font-size: 3.2rem; }
  .hero-lede { font-size: 1rem; }
  .hero-benefits { gap: 9px; }
  .hero-actions { display: none; }
  .hero-proofline { display: none; }
  .media-frame { height: 920px; border-radius: 24px; }
  .media-caption, .briefing-caption { left: 28px; right: 28px; top: auto; bottom: 92px; width: auto; padding: 24px 24px 66px; }
  .slide-joke .media-caption, .slide-close .briefing-caption { left: 28px; right: 28px; top: auto; bottom: 92px; width: auto; }
  .slide-close .briefing-app { right: 28px; top: 390px; width: calc(100% - 56px); opacity: .42; }
  .story-link { left: 52px; right: auto; top: auto; bottom: 111px; }
  .slide-joke .story-link { left: 52px; right: auto; top: auto; bottom: 111px; }
  .m365-hero-visual { left: 28px; right: 28px; top: 560px; width: auto; gap: 8px; }
  .m365-hero-card { min-height: 78px; padding: 13px; grid-template-columns: 40px 1fr; }
  .m365-hero-card > b { width: 40px; height: 40px; border-radius: 11px; }
  .m365-hero-card i { display: none; }
  .m365-route { font-size: .54rem; }
  .m365-link { left: 52px; right: auto; top: auto; bottom: 111px; }
  .carousel-controls { left: 20px; right: 20px; bottom: 20px; }
  .carousel-dots { overflow-x: auto; }
  .dot { white-space: nowrap; }
  .quote-intro, .outcomes, .resources { width: calc(100% - 28px); }
  .quote-grid, .section-heading, .clara-story, .m365-section, .migration-section, .resources { grid-template-columns: 1fr; }
  .quote-card { min-height: 330px; padding: 28px; }
  .quote-rail { flex-wrap: wrap; }
  .quote-rail span { width: 100%; }
  .section-heading { gap: 24px; }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-card { min-height: 320px; }
  .clara-story, .m365-section, .migration-section, .foundation { padding: 85px 20px; }
  .investigation-card { transform: none; }
  .foundation-intro { display: block; }
  .foundation-intro h2 { margin-top: 20px; text-align: left; }
  .foundation-grid { grid-template-columns: 1fr; }
  .foundation-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .foundation-grid article:last-child { border-bottom: 0; }
  .readiness-grid { grid-template-columns: 1fr; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .site-footer p { margin: 0; }
  .story-hero { min-height: 660px; }
  .story-hero-shade { background: linear-gradient(0deg, rgba(5,13,22,.96) 0%, rgba(5,13,22,.36) 72%, transparent); }
  .story-watch { grid-template-columns: 1fr; gap: 40px; }
  .story-points { grid-template-columns: 1fr; }
  .story-points article { min-height: 230px; border-right: 0; border-bottom: 1px solid var(--line); }
  .story-points article:last-child { border-bottom: 0; }
  .story-points h3 { margin-top: 38px; }
}

@media (max-width: 540px) {
  .hero-copy h1 { font-size: 2.7rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-after-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero { min-height: 940px; }
  .media-frame { height: 940px; }
  .video-frame video { object-fit: contain; }
  .media-caption, .briefing-caption { left: 20px; right: 20px; top: auto; bottom: 88px; }
  .slide-joke .media-caption, .slide-close .briefing-caption { left: 20px; right: 20px; top: auto; bottom: 88px; }
  .media-caption h2 { font-size: 1.7rem; }
  .story-link { left: 44px; bottom: 106px; }
  .briefing-frame { padding: 15px 12px 150px; }
  .signal { grid-template-columns: 23px 1fr; }
  .signal b { display: none; }
  .carousel-controls { grid-template-columns: 38px 1fr 38px; }
  .carousel-arrow { width: 38px; height: 38px; }
  .dot { font-size: 0; }
  .dot span { font-size: .68rem; }
  .quote-card p { font-size: 1.25rem; }
  .readiness-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
