/* BoxMind website styles.
   These reproduce the look of the original boxmind.ai React site, value for value (its Tailwind classes are
   noted in comments): page #F8FBFD, Roboto, gray-400 navigation, gradient 40px titles, zinc-500 justified
   text, #135991 buttons, the blue contact block, the light footer, the FAQ accordion, the hero banner image. */

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/roboto-latin-var.woff2") format("woff2");
}

:root {
  --blue: #135991;        /* bg-[#135991] */
  --blue-hover: #23435E;  /* hover:bg-[#23435e] */
  --blue-line: #719BBD;   /* border-[#719bbd] on the blue block */
  --footer-blue: #1D6196; /* text-[#1D6196] */
  --page: #F8FBFD;        /* bg-[#F8FBFD] */
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;    /* text-gray-400: navigation, footer */
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --neutral-400: #A3A3A3; /* hero sub-title */
  --zinc-500: #71717A;    /* body text */
  --stone-300: #D6D3D1;   /* footer rule */
  --chip-bg: #F2F2FA;     /* dashboard chips */
  --chip-text: #8874CD;
  --error: #B91C1C;
  --success: #0B6B3A;
  --font: Roboto, Arial, sans-serif;
}

/* ---------------------------------------------------------------- Base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 6rem; }
body {
  margin: 0; font-family: var(--font); font-size: 1rem; line-height: 1.75rem;
  color: var(--zinc-500); background: var(--page); overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; }
h1, h2, h3 { margin: 0 0 1rem; font-weight: 700; line-height: 1.25; color: var(--gray-800); }
p, ul, ol, dl { margin: 0 0 1.25rem; }
a { color: var(--blue); }
a:hover { color: var(--blue-hover); }
strong { color: var(--gray-800); font-weight: 700; }

/* .gradient-text, copied from the original index.css */
.gradient-text { color: rgb(20, 90, 147); }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .gradient-text {
    background-image: linear-gradient(90deg, rgb(34, 34, 34), rgb(20, 90, 147));
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
}
/* lg:text-[40px] text-[32px] font-semibold leading-tight */
.title { font-size: 2rem; font-weight: 700; line-height: 1.25; }
@media (min-width: 64rem) { .title { font-size: 2.5rem; } }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; border-radius: 4px; }
.band-blue :focus-visible { outline-color: #FFFFFF; }
main:focus { outline: none; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; border: 0;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.skip-link { position: absolute; left: 0.75rem; top: -4rem; z-index: 100; padding: 0.5rem 1rem; background: var(--blue); color: #FFF; border-radius: 0.375rem; }
.skip-link:focus { top: 0.75rem; color: #FFF; }

.container { width: 100%; max-width: 75rem; margin: 0 auto; padding: 0 1.25rem; }
.container.narrow { max-width: 55.625rem; }   /* w-[850px] + px-4 */
.center { text-align: center; }

/* Original scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background-color: #B1B2B3; border-radius: 10px; }
::-webkit-scrollbar-track { background-color: transparent; }

/* ---------------------------------------------------------------- Header: w-full fixed z-50, px-[30px] lg:px-[100px] py-[16px] */
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 50; background: var(--page); }
.js .is-home .site-header { background: transparent; }
.js .is-home .site-header.scrolled, .js .is-home .site-header.menu-open { background: var(--page); }
.header-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0 1rem; padding: 1rem 1.875rem; }
main { padding-top: 5.625rem; }
.is-home main { padding-top: 0; }
.brand { display: flex; align-items: center; gap: 0.875rem; flex: none; }
.logo { display: block; }
.logo img { display: block; width: 150px; height: auto; }
.aeg-lockup { text-decoration: none; color: var(--gray-400); }
.aeg-lockup:hover { color: var(--blue); }
.aeg-lockup img { display: block; height: 2.25rem; width: auto; }
.aeg-text { display: block; padding-left: 0.875rem; border-left: 1px solid var(--gray-300); font-size: 0.75rem; letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.2; max-width: 6rem; }

.nav-toggle { display: none; align-items: center; justify-content: center; width: 2.75rem; height: 2.75rem; padding: 0; background: none; border: 0; color: var(--gray-700); cursor: pointer; }
.nav-toggle svg { width: 1.5rem; height: 1.5rem; }
.js .nav-toggle { display: inline-flex; }

/* Small screens: lg:hidden block bg-gray-100 py-2, links block py-2 px-4 hover:bg-gray-200 */
.site-nav { flex: 1 0 100%; margin: 1rem -1.875rem -1rem; padding: 0.5rem 0; background: var(--gray-100); }
.js .site-nav { display: none; }
.js .site-nav.open { display: block; max-height: calc(100vh - 5.625rem); max-height: calc(100dvh - 5.625rem); overflow-y: auto; }
.nav-list { list-style: none; margin: 0; padding: 0; }
.nav-list > li { position: relative; display: flex; flex-wrap: wrap; align-items: center; }
.nav-list a { display: block; flex: 1; padding: 0.5rem 1rem; line-height: 1.5rem; text-decoration: none; color: #000; }
.nav-list a:hover { background: var(--gray-200); }
.nav-list a[aria-current] { color: var(--blue); }
.submenu-toggle { flex: none; width: 2.75rem; height: 2.5rem; padding: 0; background: none; border: 0; cursor: pointer; color: var(--gray-400); }
.submenu-toggle::before {
  content: ""; display: block; width: 0.4rem; height: 0.4rem; margin: 0 auto;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: translateY(-2px) rotate(45deg);
}
.submenu-toggle[aria-expanded="true"]::before { transform: translateY(2px) rotate(-135deg); }
html:not(.js) .submenu-toggle { display: none; }
.submenu { list-style: none; flex: 1 0 100%; margin: 0; padding: 0 0 0.25rem 1rem; display: none; }
.has-menu.open > .submenu { display: block; }
.header-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; padding: 0.5rem 1rem; }
.header-social { display: flex; align-items: center; gap: 1rem; color: #000; }
@media (min-width: 80rem) { .header-social { color: var(--gray-400); } }
.header-social a { display: inline-flex; color: inherit; }
.header-social .yt:hover { color: red; }
.header-social .li:hover { color: var(--blue); }
.header-social .yt svg { width: 25px; height: 25px; }
.header-social .li svg { width: 20px; height: 20px; }
.header-social svg, .social svg { fill: currentColor; display: block; }

/* Large screens: lg:flex flex-row gap-[35px] text-gray-400, hover and current text-[#135991] */
@media (min-width: 80rem) {
  .header-row { flex-wrap: nowrap; padding: 1rem 2.5rem; }
  .js .nav-toggle { display: none; }
  .site-nav, .js .site-nav { display: flex; flex: 1; align-items: center; justify-content: space-between; margin: 0; padding: 0; background: none; }
  .nav-list { display: flex; align-items: center; gap: 35px; margin: 0 auto; }
  .nav-list > li { flex-wrap: nowrap; }
  .nav-list a { padding: 0; color: var(--gray-400); white-space: nowrap; }
  .nav-list a:hover { background: none; color: var(--blue); }
  .submenu-toggle { width: 1.125rem; height: 1.75rem; margin-left: 0.125rem; }
  .submenu {
    position: absolute; top: 100%; left: -1rem; min-width: 15rem; padding: 0.5rem 0; margin-top: 0.5rem;
    background: var(--page); border: 1px solid var(--gray-200); border-radius: 0.5rem; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  }
  .submenu::before { content: ""; position: absolute; left: 0; right: 0; top: -0.75rem; height: 0.75rem; }
  .submenu-wide { columns: 2; min-width: 23rem; }
  .submenu li { break-inside: avoid; }
  .has-menu:hover > .submenu { display: block; }
  .submenu a { padding: 0.375rem 1rem; }
  .header-actions { padding: 0; flex: none; margin-left: 35px; }
}
@media (min-width: 85.375rem) { .header-row { padding: 1rem 100px; } }

/* ---------------------------------------------------------------- Buttons: bg-[#135991] hover:bg-[#23435e] duration-300 text-white rounded-md px-4 py-2 */
.btn {
  display: inline-block; padding: calc(0.5rem - 1px) calc(1rem - 1px); font: inherit; line-height: 1.5rem; text-align: center; text-decoration: none;
  color: #FFF; background: var(--blue); border: 1px solid var(--blue); border-radius: 0.375rem; cursor: pointer;
}
.btn:hover { background: var(--blue-hover); border-color: var(--blue-hover); color: #FFF; }
.btn-secondary { background: transparent; color: var(--blue); }
.btn-secondary:hover { background: var(--blue); border-color: var(--blue); color: #FFF; }
.btn[disabled] { opacity: 0.6; cursor: progress; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }
.center .btn-row, .btn-row.center { justify-content: center; }
/* On the blue block: text-white border border-[#719bbd] px-4 py-2 rounded-lg uppercase bg-transparent */
.band-blue .btn { padding: 0.5rem 1rem; background: transparent; border-color: var(--blue-line); border-radius: 0.5rem; text-transform: uppercase; color: #FFF; }
.band-blue .btn:hover { background: #FFF; border-color: #FFF; color: var(--blue); }
.text-link { color: #1D4ED8; }
.text-link:hover { color: #1E40AF; }

/* ---------------------------------------------------------------- Home banner: .banner bg-no-repeat bg-cover lg:h-[70vh] */
.banner {
  background: url("../img/art/hero-bg.webp") left top / cover no-repeat;
  padding: 9rem 0 3rem; display: flex; align-items: center; justify-content: center;
}
@media (min-width: 64rem) { .banner { min-height: min(70vh, 47.5rem); padding-top: 7rem; } }
.hero { text-align: center; }
.hero-inner { position: relative; width: auto; max-width: 874px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 64rem) { .hero-inner { width: 874px; } }
.hero h1 { display: inline-block; position: relative; }
.hero h1 { padding-top: 1.5rem; margin-bottom: 0.5rem; font-size: 27px; line-height: 1.5; }
.lead { max-width: 789px; margin: 0 auto 0.5rem; color: var(--neutral-400); font-size: 1.25rem; line-height: 1.5; letter-spacing: -0.025em; }
@media (min-width: 64rem) { .lead { line-height: 33px; } }
.hero-cta { position: relative; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; margin: 0.5rem 0 0; padding-top: 1rem; }
.doodle { position: absolute; display: none; pointer-events: none; }
@media (min-width: 64rem) {
  .hero h1 { font-size: 40px; }
  .doodle { display: block; }
  .doodle-lines { left: -62px; top: 0; }
  .doodle-arrow { left: calc(50% + 163px); top: -10px; }
}

/* Inner page heads: same centered gradient title */
.page-hero { padding: 2.5rem 0 1rem; text-align: center; }
.page-hero h1 { margin-bottom: 0.5rem; }
.hero-tagline { display: block; font-weight: 400; }

/* ---------------------------------------------------------------- Sections: text beside a picture (SubSection1..12) */
.section { padding: 2.5rem 0; }
.section-split { padding: 1.75rem 0; }
.split { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 50px; }
.split-text { max-width: 612px; }
.split-text .title { text-align: center; margin-bottom: 0; }
.split-text p, .justify { text-align: justify; }
.split-text p { max-width: 592px; }
.split-art { flex: none; text-align: center; }
.split-art img { display: block; margin: 0 auto; width: auto; max-height: 389px; }
.split-art .art-tall { max-height: 489px; }
.art-photo { border-radius: 0.5rem; }
@media (min-width: 64rem) {
  .split { flex-direction: row; gap: 100px; }
  .split-reverse { flex-direction: row-reverse; }
  .split-text .title { text-align: left; }
  .split-art img { height: 389px; max-height: none; }
  .split-art .art-tall { height: 489px; }
}
@media (min-width: 80rem) {
  .container.split { max-width: 77.5rem; }
  .split { gap: 64px; }
  .split-text { flex: 0 0 612px; }
  .split-art { flex: 0 1 auto; min-width: 0; }
  .split-art img { width: auto; height: auto; max-width: 520px; max-height: 389px; }
  .split-art .art-tall { max-height: 489px; }
  .split-art .screen { width: 520px; }
  .split-short .split-art img { max-height: 280px; }
  .split > .prose { margin-left: 0; margin-right: 0; }
}
.intro { max-width: 53rem; margin-left: auto; margin-right: auto; }
.sub { color: var(--zinc-500); line-height: 30px; }

/* Inner-page text card: text-justify lg:w-[850px] mx-auto my-8 p-6 bg-white shadow-lg rounded-lg text-gray-700 */
.prose {
  max-width: 850px; margin: 2rem auto; padding: 1.5rem; text-align: justify; color: var(--gray-700); line-height: 1.5rem;
  background: #FFF; border-radius: 0.5rem; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.container.narrow.prose { max-width: 850px; padding: 1.5rem; }
.prose h2 { margin: 1.5rem 0 0.5rem; font-size: 1.25rem; line-height: 1.75rem; font-weight: 700; text-align: left; color: #000; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 0; }
.prose p + p, .prose ul + p, .prose ol + p, .prose p + .btn-row { margin-top: 1.5rem; }
.prose li { margin-bottom: 0.5rem; }
.prose ul, .prose ol { margin: 0; padding-left: 1.25rem; }
.momentum, .recognition { max-width: 50rem; margin: 2.5rem auto 0; text-align: center; font-size: 1.25rem; line-height: 33px; color: var(--gray-800); }

/* ---------------------------------------------------------------- Columns in the style of the original Product row (lg:border-r, centered) */
.col-grid { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 1.25rem 0; grid-template-columns: repeat(auto-fit, minmax(16.5rem, 1fr)); }
.col-grid > * { padding: 1rem; text-align: center; }
@media (min-width: 64rem) { .col-grid > * { border-right: 1px solid var(--gray-200); } .col-grid > *:last-child { border-right: 0; } }
@media (min-width: 80rem) { .col-grid { grid-template-columns: repeat(4, 1fr); } .col-grid > *:nth-child(4n) { border-right: 0; } }
.col-title { font-size: 1.5rem; font-weight: 700; line-height: 2rem; color: var(--gray-800); margin-bottom: 0.5rem; }
.col-title a { color: inherit; text-decoration: none; }
.col-title a:hover { color: var(--blue); }
.group-name { font-size: 1.125rem; font-weight: 700; letter-spacing: 0.02em; color: var(--gray-800); margin-bottom: 0.75rem; }
.col-grid p { max-width: 20rem; margin: 0.5rem auto 0; line-height: 1.625; }
.link-card { position: relative; }
.link-card .col-title a::before { content: ""; position: absolute; inset: 0; }

/* Chips: the original dashboard icons, bg #f2f2fa text #8874cd, selected or hover bg #135991 */
.pill-list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin: 0; padding: 0; }
.pill-list a, .sector-strip a { display: inline-block; padding: 0.5rem 0.75rem; border-radius: 0.375rem; background: var(--chip-bg); color: var(--chip-text); text-decoration: none; }
.pill-list a:hover, .sector-strip a:hover { background: var(--blue); color: #FFF; }
.sector-strip { list-style: none; display: flex; flex-wrap: wrap; gap: 0.625rem; margin: 1rem 0 0; padding: 0; justify-content: center; }
@media (min-width: 64rem) { .sector-strip { justify-content: flex-start; } }
.problem-area { margin-top: 3rem; text-align: center; }
.problem-area h2 { font-size: 1.5625rem; color: #000; }
@media (min-width: 64rem) { .problem-area h2 { font-size: 2rem; } }
.closing-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 2.5rem; }

/* Stats, same Product-row pattern */
.stat-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); }
.stat-list li { padding: 1rem; text-align: center; }
.stat-num { display: block; font-size: 2rem; font-weight: 700; line-height: 2.5rem; color: var(--gray-800); }
.stat-label { display: block; padding: 0.5rem 0; }
@media (min-width: 64rem) { .stat-list { grid-template-columns: repeat(4, 1fr); } .stat-list li { border-right: 1px solid var(--gray-200); } .stat-list li:last-child { border-right: 0; } }

/* Solution fact strip */
.glance-list { display: grid; margin: 0 auto; max-width: 62rem; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); }
.glance-list > div { padding: 1rem; text-align: center; }
@media (min-width: 64rem) { .glance-list > div { border-right: 1px solid var(--gray-200); } .glance-list > div:last-child { border-right: 0; } }
.glance-list dt { color: var(--chip-text); }
.glance-list dd { margin: 0.25rem 0 0; color: var(--gray-800); font-size: 1.125rem; font-weight: 500; }

.breadcrumbs { padding-top: 0.5rem; font-size: 0.875rem; color: var(--gray-400); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; margin: 0; padding: 0; }
.breadcrumbs li + li::before { content: "/"; margin: 0 0.5rem; }
.breadcrumbs a { color: var(--gray-400); text-decoration: none; }
.breadcrumbs a:hover { color: var(--blue); }
.video { margin: 0 0 2.5rem; }
.video video { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; background: #000; border: 1px solid #075985; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }
.transcript { margin-top: 1rem; padding: 0.5rem; border-bottom: 1px solid var(--gray-200); }
.transcript summary { cursor: pointer; color: #000; }

/* ---------------------------------------------------------------- Blue block: bg-[#135991] p-4, title text-white lg:text-[64px] text-[30px] font-semibold */
.band-blue { background: var(--blue); color: var(--gray-300); padding: 1rem 1rem 2rem; text-align: center; }
.band-blue h1 { color: #FFF; font-size: 30px; font-weight: 700; line-height: 1.5; margin: 0; }
@media (min-width: 64rem) { .band-blue h1 { font-size: 64px; } }
.band-blue .lead { color: var(--gray-300); margin-top: 0.5rem; }
.band-blue h2 { color: #FFF; font-size: 30px; font-weight: 700; line-height: 1.5; margin-bottom: 0; }
@media (min-width: 64rem) { .band-blue h2 { font-size: 64px; } .band-blue .h-medium { font-size: 40px; } }
.band-blue p { max-width: 46rem; margin-left: auto; margin-right: auto; }
.band-blue a:not(.btn) { color: #FFF; }
.motto { font-style: italic; color: #FFF; margin: 1.5rem auto 0; }

/* ---------------------------------------------------------------- FAQ: banner lg:w-[830px], rows p-2 rounded-lg, answers opacity-60 max-w-[696px] */
.faq-banner { display: block; width: 830px; max-width: 100%; margin: 0 auto; }
.faq-page { padding-top: 0; }
.faq-list { margin: 0 auto 2.5rem; max-width: 850px; padding: 0 1rem; }
.faq-item { padding-top: 15px; border-bottom: 1px solid var(--gray-200); }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.5rem 0.5rem 1.5rem; list-style: none; cursor: pointer; color: #000; border-radius: 0.5rem; }
.faq-item[open] summary { padding-bottom: 1rem; background: var(--gray-100); border-radius: 0.5rem 0.5rem 0 0; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h2 { margin: 0; font-size: 1rem; font-weight: 400; line-height: 1.5rem; color: #000; }
.faq-item summary::after { content: "+"; flex: none; font-size: 1.375rem; font-weight: 300; line-height: 1; color: #000; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0; padding: 0 0.5rem 0.5rem; line-height: 1.5rem; color: rgba(0, 0, 0, 0.6); background: var(--gray-100); border-radius: 0 0 0.5rem 0.5rem; }
.faq-item p > span { display: block; max-width: 696px; }
.faq-item p a { color: #1D4ED8; text-decoration: none; }
.faq-item p a:hover { color: #1E40AF; }

.office-grid { list-style: none; margin: 1.5rem auto 2rem; padding: 0; max-width: 62rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(10.5rem, 1fr)); }
.office-grid li { padding: 0.75rem; text-align: center; }
.office-city { display: block; font-size: 1.125rem; font-weight: 700; color: var(--gray-800); }
.message-page { padding: 5rem 0; text-align: center; }

/* ---------------------------------------------------------------- Form on the blue block: labels text-gray-300, fields border border-[#719bbd] bg-transparent text-white rounded px-2 py-1 */
.contact-form { max-width: 412px; margin: 1rem auto 0; text-align: left; }
.field-row { display: grid; gap: 0 0.75rem; grid-template-columns: 1fr; }
@media (min-width: 64rem) { .field-row { grid-template-columns: 1fr 1fr; } }
.field { margin-bottom: 0.75rem; }
.field label { display: block; margin-bottom: 0.5rem; line-height: 1.5rem; color: var(--gray-300); }
.required { font-size: 0.875rem; }
.field input, .field select, .field textarea {
  display: block; width: 100%; min-height: 0; padding: 0.25rem 0.5rem; font: inherit; line-height: 1.5rem; color: #FFF;
  background: transparent; border: 1px solid var(--blue-line); border-radius: 0.25rem; outline-offset: 2px;
}
.field select, .field option { background: var(--blue); color: #FFF; }
.field textarea { height: 100px; resize: vertical; }
.field [aria-invalid="true"] { border: 2px solid #FCA5A5; }
.field-error { margin: 0.375rem 0 0; color: #FECACA; font-size: 0.9375rem; }
.field-error::before { content: "! "; }
.field-trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-submit { text-align: center; margin: 1rem 0 0; }
.notice { max-width: 44rem; margin: 0 auto 1rem; padding: 0.75rem 1rem; text-align: left; background: #FFF; border-radius: 0.375rem; color: var(--gray-800); }
.notice p, .notice ul { margin: 0; max-width: none; }
.notice ul { padding-left: 1.25rem; }
.notice-success p { color: var(--success); }
.notice-error, .band-blue .notice-error a:not(.btn) { color: var(--error); }
.contact-line { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 0.75rem; font-size: 1.125rem; }

/* ---------------------------------------------------------------- Footer, as the original */
.site-footer { background: var(--page); display: flex; flex-direction: column; align-items: center; color: var(--gray-400); font-size: 15px; }
.footer-rule { width: 100%; max-width: 1000px; margin: 1.5rem 0 0; border: 0; border-top: 4px solid var(--stone-300); border-radius: 0.5rem; }
.footer-grid { width: 100%; max-width: 1040px; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem; padding: 2rem 1rem; text-align: center; }
@media (min-width: 64rem) { .footer-grid { flex-direction: row; align-items: center; } .footer-brand { padding-bottom: 2rem; } }
.footer-heading { margin: 0 0 0.5rem; font-size: 18px; font-weight: 400; line-height: 27px; color: var(--footer-blue); text-decoration: underline; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 8px; line-height: 22.5px; }
.site-footer a { color: var(--gray-400); text-decoration: none; }
.site-footer a:hover { color: var(--blue); }
.footer-brand img { display: block; width: 166px; height: auto; margin: 0 auto; }
.footer-brand .footer-aeg { width: auto; height: 2.5rem; margin-top: 0.75rem; }
.footer-motto { margin: 0; text-align: center; color: var(--footer-blue); font-size: 0.875rem; line-height: 1.375; text-transform: capitalize; }
.social { list-style: none; display: flex; align-items: center; gap: 1rem; margin: 0; padding: 0 0 1rem; }
.social a { display: inline-flex; }
.social .yt svg { width: 35px; height: 35px; }
.social .li svg { width: 30px; height: 30px; }
.social .yt:hover { color: red; }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.25rem 0.5rem; padding: 0 1rem 1rem; font-size: 0.875rem; line-height: 1.25rem; color: var(--gray-500); text-align: center; }
.footer-legal:not(:last-child) { padding-bottom: 0.25rem; }
.footer-legal p { margin: 0; }
.site-footer .footer-legal a { color: var(--gray-700); text-decoration: underline; }
.site-footer .footer-legal a:hover { color: var(--gray-500); }

/* Back to top: p-3 rounded bg-[#135991] m-3 sm:m-10 fixed right-0 bottom-0 hover:bg-[#244865] */
.to-top { position: fixed; right: 0; bottom: 0; margin: 0.75rem; padding: 0.875rem; display: flex; background: var(--blue); color: #FFF; border: 0; border-radius: 0.25rem; cursor: pointer; z-index: 40; }
.to-top:hover { background: #244865; }
.to-top svg { width: 1rem; height: 1rem; fill: currentColor; }
@media (min-width: 40rem) { .to-top { margin: 2.5rem; } }

/* ---------------------------------------------------------------- Motion, as the original (duration-300, fade and slide in on view) */
@media (prefers-reduced-motion: no-preference) {
  .btn, .nav-list a, .site-footer a, .header-social a, .pill-list a, .sector-strip a, .to-top, .site-header { transition: background-color 0.3s, color 0.3s, border-color 0.3s; }
  .faq-item summary::after { transition: transform 0.3s; }
  .js .reveal { opacity: 0; transform: translateY(-5px); transition: opacity 0.5s, transform 0.5s; }
  .js .reveal-left { transform: translateX(-9px); }
  .js .reveal-right { transform: translateX(9px); }
  .js .reveal.in { opacity: 1; transform: none; }
}
@media print { .site-header, .site-footer, .btn-row, .skip-link, .to-top { display: none; } main { padding-top: 0; } }

/* Small refinements */
.split-text .recognition { margin: 0; text-align: center; }
@media (min-width: 64rem) { .split-text .recognition { text-align: left; } }
.center-block { text-align: center; }
[hidden] { display: none !important; }
.field ::placeholder { color: rgba(255, 255, 255, 0.55); opacity: 1; }

/* Solution group icons: line drawings in pastel circles, like the original product row (bg-[#e3f5e7] rounded-full) */
.group-icon { display: flex; align-items: center; justify-content: center; width: 4.5rem; height: 4.5rem; margin: 0 auto 1rem; border-radius: 50%; color: var(--blue); }
.group-icon svg { width: 2.25rem; height: 2.25rem; }
.tint-1 { background: #E3F5E7; } .tint-2 { background: #F8EDE4; } .tint-3 { background: #F9EBF1; } .tint-4 { background: #E8F0F7; }
.tint-5 { background: #F3EEFA; } .tint-6 { background: #FFF4E0; } .tint-7 { background: #E6F4F4; }
.group-icon-sm { width: 3.5rem; height: 3.5rem; margin-bottom: 0.75rem; }
.group-icon-sm svg { width: 1.75rem; height: 1.75rem; }
/* Industry pages: groups with one or two products sit centred, like the original product row */
.problem-area .col-grid { display: flex; flex-wrap: wrap; justify-content: center; }
.problem-area .col-grid > * { flex: 0 1 18rem; }
@media (min-width: 64rem) { .problem-area .col-grid > *:last-child { border-right: 0; } }

/* ---------------------------------------------------------------- Phone and tablet refinements (QA report-mobile) */
/* Small phones: keep logo, lockup and menu button on one 90px row */
@media (max-width: 25rem) {
  .header-row { padding: 1rem 1.25rem; }
  .site-nav { margin-left: -1.25rem; margin-right: -1.25rem; }
}
@media (max-width: 22.5rem) { .aeg-text { display: none; } }
/* Breadcrumb links: comfortable tap size without changing the look */
.breadcrumbs a { display: inline-block; padding: 0.5rem 0; margin: -0.5rem 0; }
/* Tablets and small laptops (1024 to 1279px): share the row between text and picture */
@media (min-width: 64rem) and (max-width: 79.99rem) {
  .split { gap: 50px; }
  .split-text { flex: 1 1 50%; min-width: 0; }
  .split-art { flex: 0 1 auto; min-width: 0; }
  .split-art img, .split-art .art-tall { width: auto; max-width: 100%; height: auto; max-height: 389px; }
  .split-art .art-tall { max-height: 489px; }
  .col-grid > *:nth-child(3n) { border-right: 0; }
  .col-grid > *:nth-child(7) { grid-column: 2; }
}
@media (min-width: 48rem) and (max-width: 63.99rem) {
  .col-grid > *:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 24rem; justify-self: center; }
}

/* Office map and numbered city list */
.office-map { max-width: 760px; margin: 1.5rem auto 0; }
.office-map img { display: block; width: 100%; height: auto; border-radius: 0.5rem; }
.office-grid li { position: relative; }
.office-num { display: inline-flex; align-items: center; justify-content: center; width: 1.375rem; height: 1.375rem; margin-bottom: 0.375rem; border-radius: 50%; background: var(--blue); color: #FFF; font-size: 0.75rem; font-weight: 700; }
.office-grid li:first-child .office-num { background: #FF6456; }
/* Product screens: like the original app screenshots (border-sky-800 shadow-xl) */
.split-art .screen { max-width: 100%; border: 1px solid #075985; border-radius: 12px; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }
@media (min-width: 64rem) { .split-art .screen { height: auto; width: 100%; max-width: 560px; } }
/* Text-and-picture blocks: text and picture close together, the pair centred as one block */
.split { justify-content: center; }
@media (min-width: 64rem) and (max-width: 79.99rem) {
  .split-art .screen { width: 520px; max-width: 100%; }
}
/* Card grids: partial last rows centred (QA report-layout L3, L5) */
@media (min-width: 80rem) { .col-grid { display: flex; flex-wrap: wrap; justify-content: center; } .col-grid > * { flex: 0 0 25%; } }
@media (min-width: 48rem) and (max-width: 63.99rem) { .office-grid { grid-template-columns: repeat(5, 1fr); } }
/* Phone: the office map scrolls sideways at a readable size */
@media (max-width: 40rem) { .office-map { overflow-x: auto; } .office-map img { width: 600px; max-width: none; } }

/* Heading and fact-strip icons */
.h-icon { display: inline-flex; align-items: center; justify-content: center; width: 2rem; height: 2rem; margin-right: 0.625rem; border-radius: 50%; color: var(--blue); vertical-align: middle; }
.h-icon svg { width: 1.125rem; height: 1.125rem; }
.prose h2 .h-icon { position: relative; top: -2px; }
.glance-list .h-icon { display: flex; width: 3rem; height: 3rem; margin: 0 auto 0.625rem; }
.glance-list .h-icon svg { width: 1.5rem; height: 1.5rem; }
.col-grid .group-icon .h-icon { width: 100%; height: 100%; margin: 0; background: transparent; }
.col-grid .group-icon .h-icon svg { width: 1.75rem; height: 1.75rem; }
.col-grid .group-icon:has(.tint-1) { background: #E3F5E7; } .col-grid .group-icon:has(.tint-2) { background: #F8EDE4; } .col-grid .group-icon:has(.tint-3) { background: #F9EBF1; }
.col-grid .group-icon:has(.tint-4) { background: #E8F0F7; } .col-grid .group-icon:has(.tint-6) { background: #FFF4E0; } .col-grid .group-icon:has(.tint-7) { background: #E6F4F4; }

/* Click-to-play video box (poster first, player only after the click) */
.video-facade { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #000; border: 1px solid #075985; border-radius: 12px; box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }
.video-facade img, .video-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }
.video-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.video-play-icon { width: 68px; height: 48px; border-radius: 12px; background: #FF0000; position: relative; }
.video-play-icon::after { content: ""; position: absolute; left: 27px; top: 14px; border-left: 18px solid #fff; border-top: 10px solid transparent; border-bottom: 10px solid transparent; }
.video-play:hover .video-play-icon { background: #CC0000; }
.video-play:focus-visible { outline: 3px solid #fff; outline-offset: -6px; }

/* Home banner with the video, as the original: banner lg:h-[70vh] holding the player, title block below it */
.banner { padding: 7rem 1rem 1.5rem; align-items: flex-start; }
@media (min-width: 64rem) { .banner { padding-top: 7.5rem; } }
.banner-video { width: 640px; max-width: 100%; margin: 0 auto; }
.banner-video .video-facade { border: 0; border-radius: 0; box-shadow: none; }
.hero-section { padding: 1.5rem 0 2.5rem; }

/* Co-Founders page: the original cards (bg-[#EDEAF8] rounded-lg p-4, 200px round photo, 30px name) */
.founders { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 2.5rem; padding: 1rem; }
@media (min-width: 64rem) { .founders { flex-direction: row; } }
.founder { flex: 1 1 0; max-width: 540px; padding: 1rem; border-radius: 0.5rem; background: #EDEAF8; }
.founder-head { display: flex; flex-direction: column; align-items: center; text-align: center; }
.founder-photo { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; object-position: top; }
.founder-head h2 { margin: 0.5rem 0 0; font-size: 30px; font-weight: 400; color: var(--gray-800); }
.founder-head h3 { margin: 0.25rem 0 0; font-size: 1rem; font-weight: 400; color: var(--gray-800); }
.founder-linkedin { display: inline-flex; width: 30px; height: 30px; margin: 0.5rem 0 0; color: #0A66C2; }
.founder-linkedin svg { width: 30px; height: 30px; fill: currentColor; }
.founder-bio { margin-top: 1rem; text-align: justify; color: var(--gray-700); line-height: 1.5rem; }
.founder-bio p { margin: 0 0 0.75rem; }
