/* =============================================
   MHO HOTELS — BRAND THEME
   Palette sampled directly from images/logo.png:
     blue #0170C1  ·  red #EE1C25
   Everything below is a tint, shade or gradient of
   those two. No third accent colour is introduced.
   Depth comes from blue-tinted surfaces, gradients
   and film grain — never from flat white.
============================================= */
:root {
  /* ---- Brand blue (logo) ---- */
  --blue:           #0170C1;
  --blue-deep:      #01508B;
  --blue-ink:       #06304F;   /* darkest — headings & dark bands */
  --blue-lt:        #6FB6E6;   /* light accent, used on dark only */
  --blue-pale:      #E4EFFA;
  --blue-mist:      #F2F7FC;

  /* ---- Brand red (logo) ---- */
  --red:            #EE1C25;
  --red-deep:       #C4141B;   /* text-safe: 5.6:1 on light */
  --red-dark:       #A11017;
  --red-pale:       #FDEBEC;

  /* ---- Neutrals, all blue-tinted (never pure grey/white) ---- */
  --ink:            #072338;
  --body-text:      #3B506B;
  --muted:          #5D7391;

  --canvas:         #EFF5FB;
  --canvas-2:       #E4EEF8;
  --canvas-3:       #D8E6F4;
  --surface:        #FBFDFF;
  --surface-2:      #F6FAFE;

  --line:           #D5E3F0;
  --line-2:         #BFD4E8;

  /* ---- Elevation: cool blue-tinted shadow ---- */
  --shadow-sm:      0 1px 2px rgba(6, 48, 79, 0.04), 0 2px 8px rgba(6, 48, 79, 0.06);
  --shadow-md:      0 2px 6px rgba(6, 48, 79, 0.05), 0 14px 28px rgba(6, 48, 79, 0.08);
  --shadow-lg:      0 4px 14px rgba(6, 48, 79, 0.07), 0 28px 56px rgba(6, 48, 79, 0.12);
  --shadow-blue:    0 18px 44px rgba(6, 48, 79, 0.24), 0 44px 90px rgba(6, 48, 79, 0.16);
  --shadow-red:     0 6px 18px rgba(161, 16, 23, 0.26);

  /* ---- Signature gradients (the two brand colours) ---- */
  --grad-brand:     linear-gradient(90deg, var(--blue) 0%, var(--red) 100%);
  --grad-blue:      linear-gradient(160deg, #0A4372 0%, var(--blue-ink) 55%, #04263F 100%);
  --grad-red:       linear-gradient(180deg, #F5303A 0%, var(--red) 55%, #D91820 100%);

  --radius-sm:      8px;
  --radius-md:      12px;
  --radius-lg:      16px;
  --radius-xl:      22px;
  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --font-display:   'Quicksand', 'Trebuchet MS', sans-serif;
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --header-h:       80px;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  font-family: var(--font-body);
  color: var(--body-text);
  background-color: var(--canvas);
  line-height: 1.75;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
}

/* Film grain — keeps large light areas from reading flat */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  letter-spacing: -0.005em;
}
/* Quicksand has no true italic — emphasise with brand red, not a faux slant */
h1 em, h2 em, h3 em { font-style: normal; color: var(--red-deep); font-weight: 700; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
strong { font-weight: 600; }

[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* =============================================
   CONTAINER
============================================= */
.container { width: 90%; max-width: 1360px; margin: 0 auto; }
@media (min-width: 1300px) and (max-width: 1499px) {
  .container { max-width: 1220px; width: 1220px; padding: 0 40px; }
}
@media (max-width: 1299px) { .container { max-width: none; width: 90%; padding: 0; } }

.section { padding: 116px 0; position: relative; }
@media (max-width: 1299px) and (min-width: 768px) { .section { padding: 88px 0; } }
@media (max-width: 767px) { .section { padding: 64px 0; } }

/* =============================================
   EYEBROW — blue small caps + brand gradient rule
============================================= */
.eyebrow {
  font-family: var(--font-body);
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::after {
  content: '';
  flex: 1;
  max-width: 76px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), rgba(238, 28, 37, 0.35), transparent);
}
/* Centred variant: rule on both sides */
.faq-section .eyebrow { justify-content: center; }
.faq-section .eyebrow::before {
  content: '';
  flex: 1;
  max-width: 76px;
  height: 1px;
  background: linear-gradient(270deg, var(--blue), rgba(238, 28, 37, 0.35), transparent);
}
.agentic-section .eyebrow { color: var(--blue-lt); }
.agentic-section .eyebrow::after { background: linear-gradient(90deg, var(--blue-lt), rgba(238,28,37,0.5), transparent); }

/* =============================================
   BUTTONS
============================================= */
.btn-red {
  background: var(--grad-red);
  color: #FFF;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  transition: box-shadow var(--transition), transform var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 1px 0 rgba(255,255,255,0.24) inset, var(--shadow-red);
}
.btn-red::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #D91820 0%, var(--red-dark) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: -1;
}
.btn-red:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.24) inset, 0 10px 26px rgba(161, 16, 23, 0.34);
}
.btn-red:hover::before { opacity: 1; }

.btn-outline {
  border: 1px solid var(--line-2);
  color: var(--blue-ink);
  background: var(--surface);
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), color var(--transition);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); box-shadow: var(--shadow-sm); }

/* =============================================
   01 HEADER
============================================= */
.sticky-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  transition: height var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition);
  background: transparent;
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
}
.sticky-bar.scrolled {
  height: 68px;
  background: rgba(242, 247, 252, 0.88);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 28px rgba(6, 48, 79, 0.07);
}
.sticky-bar .container { display: flex; align-items: center; justify-content: space-between; }
.header-logo-link { display: inline-flex; align-items: center; }
.header-logo { height: 46px; width: auto; object-fit: contain; transition: height var(--transition); }
.sticky-bar.scrolled .header-logo { height: 38px; }
.sticky-bar .actions { display: flex; align-items: center; gap: 14px; }
.sticky-bar .login-btn {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--blue-ink);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  box-shadow: none;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.sticky-bar .login-btn::before { display: none; }
.sticky-bar .login-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-pale);
  box-shadow: none;
  transform: none;
}
.sticky-bar .btn-red:not(.login-btn) { padding: 11px 24px; font-size: 14px; }

/* =============================================
   02 HERO
============================================= */
.hero {
  background:
    radial-gradient(1000px 560px at 84% -12%, rgba(1, 112, 193, 0.16) 0%, transparent 62%),
    radial-gradient(820px 500px at -5% 105%, rgba(238, 28, 37, 0.07) 0%, transparent 64%),
    linear-gradient(172deg, var(--blue-mist) 0%, var(--canvas) 44%, var(--canvas-2) 100%);
  padding: calc(var(--header-h) + 66px) 0 108px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 68px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1 {
  color: var(--ink);
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 1.14;
  margin-bottom: 26px;
  letter-spacing: -0.01em;
}
.hero-sub { color: var(--body-text); font-size: 17px; max-width: 520px; margin-bottom: 34px; line-height: 1.85; }
.proof-chips { display: flex; gap: 10px; margin-bottom: 42px; flex-wrap: wrap; }
.chip {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--blue-ink);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.chip:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-map-mobile-container:not(:empty) { margin-bottom: 38px; }

/* SNAPSHOT CARD — deep brand blue */
.map-card {
  background: var(--grad-blue);
  border: 1px solid rgba(111, 182, 230, 0.24);
  border-radius: var(--radius-xl);
  padding: 38px;
  box-shadow: var(--shadow-blue);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.map-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
}
.map-card::after {
  content: '';
  position: absolute;
  top: -30%; right: -20%;
  width: 60%; height: 80%;
  background: radial-gradient(ellipse, rgba(111, 182, 230, 0.16) 0%, transparent 70%);
  pointer-events: none;
}
.map-card:hover { transform: translateY(-5px); box-shadow: 0 24px 56px rgba(6,48,79,0.30), 0 56px 110px rgba(6,48,79,0.20); }
.map-eyebrow {
  color: var(--blue-lt);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  position: relative;
}
.map-graphic { margin: 24px 0 30px; padding: 0 12px; position: relative; }
.map-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(111,182,230,0.35), transparent);
  margin-bottom: 30px;
}
.map-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; }
.stat-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: #F4FAFF;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-num .red, .stat-num .red-italic { color: var(--blue-lt); font-style: normal; }
.stat-num .red-italic { font-size: 0.78em; }
.stat-label {
  font-size: 9.5px;
  color: rgba(213, 230, 245, 0.66);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  line-height: 1.5;
}

/* =============================================
   03 TRUST STRIP
============================================= */
.trust-strip {
  background: var(--surface-2);
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.trust-inner { text-align: center; }
.trust-label {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 34px;
  display: block;
}
.trust-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 46px; flex-wrap: wrap; padding: 22px 0; margin-bottom: 8px;
}
.trust-logos img {
  height: 26px; width: auto; max-width: 118px; object-fit: contain;
  /* grayscale (not brightness(0)) so IHG's knockout shapes survive */
  filter: grayscale(100%) contrast(0.8);
  opacity: 0.6;
  transition: opacity 0.35s ease, filter 0.35s ease;
}
.trust-logos img:hover { opacity: 1; filter: grayscale(100%) contrast(1); }
.more-pill {
  background: var(--blue-pale);
  color: var(--blue-deep);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  border: 1px solid rgba(1, 112, 193, 0.24);
}
.trust-counters { display: flex; justify-content: center; gap: 0; margin-top: 38px; flex-wrap: wrap; }
.trust-counter-item { padding: 20px 48px; text-align: center; position: relative; }
.trust-counter-item:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 44px;
  background: linear-gradient(180deg, transparent, var(--line-2), transparent);
}
.trust-counter-num {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 700;
  color: var(--ink); line-height: 1; margin-bottom: 8px;
}
.trust-counter-num span { color: var(--blue); }
.trust-counter-text {
  font-size: 10.5px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.16em; font-weight: 600;
}
@media (max-width: 767px) {
  .trust-logos { gap: 30px; }
  .trust-logos img { height: 20px; max-width: 94px; }
  .trust-counter-item { padding: 16px 22px; }
  .trust-counter-num { font-size: 26px; }
}
@media (max-width: 479px) {
  .trust-counters { flex-direction: column; }
  .trust-counter-item:not(:last-child)::after {
    width: 44px; height: 1px;
    right: auto; left: 50%; top: auto; bottom: 0;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, var(--line-2), transparent);
  }
}

/* =============================================
   04 PAIN
============================================= */
.pain-section {
  background: linear-gradient(180deg, var(--canvas) 0%, var(--canvas-2) 100%);
  border-bottom: 1px solid var(--line);
}
.pain-section h2 { font-size: clamp(32px, 4vw, 50px); font-weight: 700; color: var(--ink); margin-bottom: 22px; line-height: 1.12; }
.pain-lead { color: var(--body-text); max-width: 700px; font-size: 16.5px; margin-bottom: 54px; line-height: 1.9; }
.pain-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 52px; }
.pain-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pain-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), rgba(238, 28, 37, 0));
}
.pain-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--line-2); }
.pain-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--ink);
  line-height: 1.4;
}
.pain-card p { color: var(--body-text); font-size: 14.5px; line-height: 1.8; }
.pain-card strong { color: var(--ink); font-weight: 600; }
.pain-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 36px; }
.pain-list li {
  display: flex; align-items: flex-start; gap: 14px;
  color: var(--ink); font-size: 14px; font-weight: 500; line-height: 1.65;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.pain-list li:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.pain-list li::before {
  content: '';
  width: 7px; height: 7px; min-width: 7px;
  background: var(--blue);
  border-radius: 50%;
  margin-top: 9px;
}

/* =============================================
   05 SOLUTION
============================================= */
.solution-section { background: var(--canvas); }
.solution-section h2 { font-size: clamp(32px, 3.8vw, 46px); font-weight: 700; margin-bottom: 18px; }
.solution-section .sub { color: var(--muted); font-size: 17px; margin-bottom: 56px; max-width: 580px; line-height: 1.8; }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pillar {
  padding: 36px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pillar::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--line-2); }
.pillar:hover::after { transform: scaleX(1); }
.pillar-icon { width: 40px; height: 40px; color: var(--blue); margin-bottom: 26px; stroke-width: 1.4; }
.pillar h3 {
  font-family: var(--font-body);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink);
  margin-bottom: 14px;
  font-weight: 700;
}
.pillar p { font-size: 14.5px; color: var(--body-text); line-height: 1.8; }

/* =============================================
   06 PLATFORM
============================================= */
.platform-section {
  background: linear-gradient(180deg, var(--canvas-2) 0%, var(--canvas-3) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.platform-section h2 { font-size: clamp(32px, 3.8vw, 46px); font-weight: 700; margin-bottom: 56px; }
.platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.platform-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.platform-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity var(--transition);
}
.platform-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: transparent; }
.platform-card:hover::before { opacity: 1; }
.platform-pill {
  font-family: var(--font-display);
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 22px;
  display: block;
}
.platform-icon {
  width: 52px; height: 52px;
  background: var(--blue-pale);
  border: 1px solid rgba(1, 112, 193, 0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 26px;
  color: var(--blue);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.platform-card:hover .platform-icon { background: var(--blue); border-color: var(--blue); color: #FFF; }
.platform-card h3 { font-size: 21px; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.platform-card p { font-size: 14.5px; margin-bottom: 26px; line-height: 1.8; color: var(--body-text); }
.platform-link {
  color: var(--blue-deep);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(1, 112, 193, 0.3);
  transition: gap var(--transition), color var(--transition), border-color var(--transition);
}
.platform-link:hover { gap: 12px; color: var(--red-deep); border-color: var(--red); }

/* =============================================
   07 PROOF
============================================= */
.proof-section { background: var(--canvas); position: relative; overflow: hidden; }
.proof-section h2 { font-size: clamp(32px, 3.8vw, 46px); font-weight: 700; margin-bottom: 18px; }
.proof-subtitle { font-size: 17px; color: var(--muted); margin-bottom: 56px; max-width: 560px; line-height: 1.8; }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 40px; }
.result-card {
  padding: 52px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.result-card::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 72px; height: 3px;
  background: var(--grad-brand);
}
.result-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--line-2); }
.result-fig {
  font-family: var(--font-display);
  font-size: clamp(50px, 5.8vw, 72px);
  line-height: 1;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--blue-ink) 5%, var(--blue) 55%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--blue-ink);
}
.result-metric {
  font-size: 11.5px; font-weight: 600; color: var(--blue);
  margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.18em;
}
.result-attr { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* Benchmark — deep blue plaque */
.benchmark-bar {
  background: var(--grad-blue);
  border: 1px solid rgba(111, 182, 230, 0.22);
  padding: 40px 46px;
  font-size: 20px;
  font-family: var(--font-display);
  font-weight: 500;
  color: #EDF5FC;
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  line-height: 1.6;
  box-shadow: var(--shadow-blue);
  position: relative;
  overflow: hidden;
}
.benchmark-bar::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-brand);
}
.benchmark-bar strong { color: var(--blue-lt); font-size: 30px; font-weight: 700; }

/* Capacity showcase */
.cap-showcase {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.cap-showcase::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-brand);
}
.cap-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 38px; padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.cap-header h3 { font-family: var(--font-display); font-size: 23px; font-weight: 700; color: var(--ink); }
.cap-badge {
  background: var(--red-pale);
  color: var(--red-deep);
  font-weight: 600;
  font-size: 10.5px;
  padding: 9px 20px;
  border-radius: 100px;
  letter-spacing: 0.18em;
  border: 1px solid rgba(238, 28, 37, 0.24);
  white-space: nowrap;
}
.cap-row { margin-bottom: 26px; }
.cap-meta { margin-bottom: 12px; }
.cap-label { font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted); }
.cap-label.red-label { color: var(--red-deep); }
.cap-track {
  background: var(--canvas-2);
  height: 62px;
  border-radius: 31px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.cap-bar {
  height: 100%; border-radius: 31px;
  display: flex; align-items: center; padding: 0 26px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.grey-bar { background: linear-gradient(90deg, var(--canvas-3), var(--line-2)); width: 35%; color: var(--blue-ink); }
.red-bar {
  background: linear-gradient(100deg, var(--blue-ink) 0%, var(--blue-deep) 45%, var(--blue) 100%);
  width: 100%; color: #F4FAFF;
  box-shadow: 0 6px 22px rgba(1, 80, 139, 0.28);
}
.red-bar .cap-num { color: #FFF; }
.cap-num { font-family: var(--font-display); font-size: 30px; font-weight: 700; margin-right: 12px; }
.cap-unit { font-size: 13px; font-weight: 400; opacity: 0.85; letter-spacing: 0.04em; }
.cap-footer {
  margin-top: 34px;
  font-size: 17px;
  font-family: var(--font-body);
  font-style: italic;
  color: var(--body-text);
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  position: relative;
}
.cap-footer::before {
  content: '\201C';
  position: absolute; top: 8px; left: 50%;
  transform: translateX(-50%);
  font-size: 52px;
  color: rgba(1, 112, 193, 0.18);
  font-family: var(--font-display);
  line-height: 1;
}

/* =============================================
   08 AGENTIC — deep brand-blue band
============================================= */
.agentic-section {
  background: linear-gradient(168deg, #04263F 0%, var(--blue-ink) 40%, #0A4372 100%);
  color: rgba(224, 238, 250, 0.76);
  position: relative;
  overflow: hidden;
}
.agentic-section::before {
  content: '';
  position: absolute; top: -20%; left: -8%;
  width: 55%; height: 85%;
  background: radial-gradient(ellipse, rgba(111, 182, 230, 0.14) 0%, transparent 70%);
  pointer-events: none;
}
.agentic-section::after {
  content: '';
  position: absolute; bottom: -20%; right: -8%;
  width: 55%; height: 85%;
  background: radial-gradient(ellipse, rgba(238, 28, 37, 0.11) 0%, transparent 70%);
  pointer-events: none;
}
.agentic-section .container { position: relative; z-index: 1; }
.agentic-section h2 { font-size: clamp(36px, 4.4vw, 54px); font-weight: 700; color: #F4FAFF; margin-bottom: 22px; }
.agentic-section h2 em { color: var(--blue-lt); font-style: normal; }
.agentic-sub { font-size: 17px; color: rgba(224, 238, 250, 0.74); max-width: 780px; margin-bottom: 60px; line-height: 1.9; }
.agentic-sub strong { color: #F4FAFF; font-weight: 600; }
.modes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 60px; }
.mode-card {
  background: rgba(111, 182, 230, 0.06);
  border: 1px solid rgba(111, 182, 230, 0.2);
  border-radius: var(--radius-xl);
  padding: 42px 38px;
  transition: background var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.mode-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.mode-card:hover { background: rgba(111, 182, 230, 0.1); border-color: rgba(111, 182, 230, 0.38); }
.mode-card:hover::before { opacity: 1; }
.mode-card h3 {
  font-family: var(--font-body);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
  color: var(--blue-lt);
  font-weight: 700;
}
.mode-card p { color: rgba(224, 238, 250, 0.7); font-size: 15px; line-height: 1.85; }
.safeguards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 76px; }
.safeguard {
  font-size: 13.5px;
  color: rgba(224, 238, 250, 0.68);
  background: rgba(111, 182, 230, 0.05);
  border: 1px solid rgba(111, 182, 230, 0.16);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: background var(--transition), border-color var(--transition);
  line-height: 1.7;
  position: relative;
  overflow: hidden;
}
.safeguard:hover { background: rgba(111, 182, 230, 0.09); border-color: rgba(111, 182, 230, 0.34); }
.safeguard strong { display: block; color: #F4FAFF; margin-bottom: 12px; font-size: 14.5px; font-weight: 600; }
.agentic-closing {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  color: #F4FAFF;
  font-weight: 600;
  line-height: 1.45;
  padding: 52px 40px;
  background: rgba(111, 182, 230, 0.05);
  border: 1px solid rgba(111, 182, 230, 0.2);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.agentic-closing::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 2px;
  background: var(--grad-brand);
}
.agentic-closing em { color: var(--blue-lt); font-style: normal; }

/* =============================================
   09 TIMELINE
============================================= */
.timeline-section {
  background: linear-gradient(180deg, var(--canvas) 0%, var(--surface-2) 100%);
  position: relative;
  overflow: hidden;
}
.timeline-section h2 { font-size: clamp(32px, 3.8vw, 46px); font-weight: 700; margin-bottom: 18px; }
.timeline-section .sub { font-size: 17px; color: var(--muted); margin-bottom: 58px; max-width: 620px; line-height: 1.8; }
.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 56px;
  align-items: stretch;
}
.timeline-node {
  padding: 28px 24px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  min-height: 196px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.timeline-node::before {
  content: attr(data-step);
  font-family: var(--font-display);
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-size: 13px; font-weight: 700;
  color: var(--blue);
  background: var(--blue-pale);
  border: 1px solid rgba(1, 112, 193, 0.2);
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}
.timeline-node:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: var(--shadow-lg); }
.timeline-node:hover::before { color: #FFF; background: var(--blue); border-color: var(--blue); }
.timeline-date {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--blue-deep);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}
.timeline-node p { font-size: 14px; color: var(--body-text); line-height: 1.75; margin: 0; }
.timeline-node.highlight {
  background: var(--grad-blue);
  border-color: rgba(111, 182, 230, 0.3);
  box-shadow: var(--shadow-blue);
}
.timeline-node.highlight::before { color: var(--blue-lt); background: rgba(111,182,230,0.14); border-color: rgba(111,182,230,0.34); }
.timeline-node.highlight .timeline-date { color: var(--blue-lt); }
.timeline-node.highlight p { color: rgba(224, 238, 250, 0.78); }

/* Integration banner */
.integration-banner {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px 44px;
  margin: 60px auto 0;
  max-width: 940px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: var(--shadow-md);
  transition: border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.integration-banner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-brand);
}
.integration-banner:hover { border-color: var(--line-2); box-shadow: var(--shadow-lg); }
.int-banner-left { display: flex; align-items: center; gap: 22px; }
.int-icon-box {
  width: 52px; height: 52px;
  background: var(--blue-pale);
  border: 1px solid rgba(1, 112, 193, 0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.int-text strong { display: block; font-family: var(--font-display); font-size: 18px; color: var(--ink); margin-bottom: 5px; font-weight: 700; }
.int-text span { font-size: 14px; color: var(--muted); line-height: 1.6; display: block; }
.int-badge {
  background: var(--grad-red);
  color: #FFF;
  font-weight: 600;
  font-size: 10.5px;
  padding: 13px 26px;
  border-radius: 100px;
  letter-spacing: 0.18em;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  box-shadow: var(--shadow-red);
  transition: box-shadow var(--transition), transform var(--transition);
}
.int-badge:hover { color: #FFF; transform: translateY(-1px); box-shadow: 0 10px 26px rgba(161, 16, 23, 0.34); }

/* =============================================
   10 FAQ
============================================= */
.faq-section {
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--canvas-2) 100%);
  border-top: 1px solid var(--line);
  position: relative;
}
.faq-section h2 { font-size: clamp(32px, 3.8vw, 46px); font-weight: 700; margin-bottom: 20px; text-align: center; }
.faq-subtitle { text-align: center; color: var(--muted); font-size: 16px; max-width: 520px; margin: 0 auto 52px; line-height: 1.8; }
.faq-container {
  max-width: 820px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 10px 44px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.faq-container::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-brand);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-btn {
  width: 100%;
  text-align: left;
  padding: 30px 0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color var(--transition);
}
.faq-btn:hover { color: var(--blue); }
.faq-content {
  display: none;
  padding-bottom: 30px;
  padding-left: 20px;
  color: var(--body-text);
  font-size: 15px;
  line-height: 1.9;
  border-left: 2px solid var(--blue-pale);
}
.faq-item[data-open="true"] .faq-content { display: block; }
.faq-icon {
  transition: transform var(--transition), color var(--transition), background var(--transition), border-color var(--transition);
  flex-shrink: 0;
  color: var(--blue);
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--blue-pale);
  border: 1px solid rgba(1, 112, 193, 0.2);
  padding: 6px;
}
.faq-item[data-open="true"] .faq-icon {
  transform: rotate(45deg);
  color: #FFF;
  background: var(--blue);
  border-color: var(--blue);
}

/* =============================================
   11 FINAL CTA
============================================= */
.final-cta {
  background:
    radial-gradient(820px 500px at 88% 0%, rgba(1, 112, 193, 0.16) 0%, transparent 66%),
    radial-gradient(720px 440px at 2% 100%, rgba(238, 28, 37, 0.07) 0%, transparent 66%),
    linear-gradient(164deg, var(--canvas-2) 0%, var(--canvas) 50%, var(--canvas-3) 100%);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.final-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.start-here-panel {
  background: var(--grad-blue);
  border: 1px solid rgba(111, 182, 230, 0.22);
  border-radius: var(--radius-xl);
  padding: 46px 42px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-blue);
}
.start-here-panel::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-brand);
}
.eyebrow-cyan { color: var(--blue-lt); }
.eyebrow-cyan::after { background: linear-gradient(90deg, var(--blue-lt), rgba(238,28,37,0.5), transparent); }
.final-cta h2 { font-size: clamp(32px, 3.9vw, 48px); font-weight: 700; color: #F4FAFF; margin-bottom: 22px; line-height: 1.14; }
.final-cta h2 em { color: var(--blue-lt); font-style: normal; }
.final-cta .body { font-size: 16px; color: rgba(224, 238, 250, 0.76); margin-bottom: 38px; line-height: 1.9; }
.risk-reversal { display: flex; gap: 10px; color: rgba(224, 238, 250, 0.88); font-weight: 500; flex-wrap: wrap; }
.risk-reversal span {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(111, 182, 230, 0.08);
  border: 1px solid rgba(111, 182, 230, 0.24);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 12.5px;
}

.form-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 46px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-brand);
}
.form-card h3 { font-family: var(--font-display); font-size: 22px; color: var(--ink); margin-bottom: 10px; font-weight: 700; line-height: 1.25; }
.form-card p.sub { font-size: 14px; color: var(--muted); margin-bottom: 26px; line-height: 1.7; }
.calendly-frame { width: 100%; height: 700px; border: 0; display: block; border-radius: var(--radius-md); }

/* Trust strip bottom */
.trust-strip-bottom {
  background: var(--blue-ink);
  border-top: 1px solid rgba(111, 182, 230, 0.2);
  padding: 26px 0;
}
.trust-strip-inner {
  display: flex; justify-content: center; align-items: center;
  gap: 30px;
  font-size: 10.5px; font-weight: 600;
  color: rgba(224, 238, 250, 0.66);
  text-transform: uppercase; letter-spacing: 0.2em;
  flex-wrap: wrap;
}
.trust-strip-inner .dot { width: 4px; height: 4px; background: var(--red); border-radius: 50%; }

/* =============================================
   FOOTER — light, blue-tinted
============================================= */
.footer {
  background: var(--canvas-3);
  border-top: 1px solid var(--line-2);
  padding: 52px 0;
  color: var(--muted);
  font-size: 13.5px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-brand);
  opacity: 0.5;
}
.footer-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 22px; }
.footer-brand p { color: var(--body-text); }
.footer-logo { height: 38px; width: auto; object-fit: contain; }

/* =============================================
   MOBILE CTA BAR
============================================= */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(242, 247, 252, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-2);
  padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 24px rgba(6, 48, 79, 0.10);
  z-index: 100;
  transition: transform var(--transition);
  transform: translateY(110%);
}
.mobile-cta-bar.visible { transform: translateY(0); }
.mobile-cta-bar .btn-red { width: 100%; }

/* =============================================
   ACCESSIBILITY
============================================= */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, iframe:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}
.agentic-section a:focus-visible,
.agentic-section button:focus-visible,
.start-here-panel a:focus-visible { outline-color: var(--blue-lt); }
.skip-link {
  position: absolute;
  top: -60px; left: 16px;
  background: var(--blue-ink);
  color: #FFF;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-weight: 600;
  font-size: 14px;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1199px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .safeguards { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .pain-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1023px) {
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero { padding: calc(var(--header-h) + 44px) 0 84px; min-height: auto; }
  .final-grid { grid-template-columns: 1fr; gap: 44px; }
  .modes-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) { .pain-cards { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 767px) {
  body { padding-bottom: 84px; }

  .hero { padding: calc(var(--header-h) + 28px) 0 64px; }
  .hero-grid { gap: 40px; }
  .hero h1 { font-size: 34px; }
  .hero-sub { font-size: 15.5px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-red, .hero-ctas .btn-outline { width: 100%; justify-content: center; }

  .pain-cards, .pain-list, .pillars-grid, .platform-grid,
  .results-grid, .safeguards, .timeline, .modes-grid { grid-template-columns: 1fr; }

  .sticky-bar .btn-red:not(.login-btn) { display: none; }
  .sticky-bar .actions { gap: 12px; }
  .mobile-cta-bar { display: block; }

  .trust-logos { justify-content: center; gap: 24px; }
  .trust-counters { flex-direction: column; gap: 4px; }

  .footer-flex { flex-direction: column; text-align: center; }
  .footer-brand { flex-direction: column; gap: 14px; }

  .integration-banner { flex-direction: column; text-align: center; padding: 34px 26px; }
  .int-banner-left { flex-direction: column; gap: 18px; }
  .faq-container { padding: 8px 26px; }
  .faq-btn { font-size: 17px; padding: 26px 0; }
  .timeline-node { min-height: auto; }

  .benchmark-bar { padding: 30px 26px; font-size: 17px; }
  .benchmark-bar strong { font-size: 25px; }

  .cap-showcase { padding: 28px 22px; }
  .cap-header { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cap-header h3 { font-size: 21px; }
  .cap-num { font-size: 23px; }
  .cap-unit { font-size: 12.5px; }
  .grey-bar { width: 80%; }

  .start-here-panel { padding: 32px 24px; }
  .final-cta .form-card { padding: 30px 22px; }
  .final-cta .form-card h3 { font-size: 21px; }
  .calendly-frame { height: 780px; }

  .map-card { padding: 28px 22px; }
  .map-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stat-num { font-size: 27px; }
  .stat-label { font-size: 9px; letter-spacing: 0.1em; }
}

@media (max-width: 575px) {
  .proof-chips { gap: 8px; }
  .chip { font-size: 12px; padding: 7px 14px; }
  .risk-reversal { flex-direction: column; align-items: flex-start; gap: 8px; }
  .platform-card, .pain-card { padding: 28px 24px; }
  .eyebrow::after { display: none; }
}

@media (max-width: 479px) {
  .hero h1 { font-size: 31px; }
  .stat-num { font-size: 24px; }
  .result-fig { font-size: 54px; }
}

@media (max-width: 389px) {
  .container { width: 92%; }
  .hero h1 { font-size: 28px; }
  .btn-red, .btn-outline { padding: 13px 22px; font-size: 14px; }
  .map-stats { gap: 8px; }
}

@media (max-width: 374px) {
  .header-logo { height: 38px; }
  .sticky-bar .login-btn { padding: 8px 15px; font-size: 12px; }
}

@media (max-width: 320px) {
  .container { width: 94%; }
  .hero h1 { font-size: 26px; }
  .hero-sub { font-size: 14.5px; }
  .pain-card h3 { font-size: 18px; }
  .map-card { padding: 22px 18px; }
  .stat-num { font-size: 21px; }
  .cap-track { height: 50px; }
  .cap-num { font-size: 19px; }
}

/* =============================================
   SCROLL ANIMATIONS
============================================= */
@media (prefers-reduced-motion: no-preference) {
  .fade-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }
}
