/* ==========================================================================
   Tokens
   ========================================================================== */
:root {
  --color-bg: #FBFAF8;
  --color-text: #0F2231;
  --color-text-muted: #4E606D;
  --color-text-muted-2: #5D6E7B;
  --color-text-muted-3: #606F7A;
  --color-text-muted-4: #64727C;
  --color-text-muted-5: #3C4E5B;
  --color-accent: #0072AD;
  --color-accent-dark: #0A2233;
  --color-surface-blue: #EAF4FA;
  --color-border: rgba(15, 34, 49, .08);
  --color-border-2: rgba(15, 34, 49, .1);
  --color-border-3: rgba(15, 34, 49, .12);
  --color-border-4: rgba(15, 34, 49, .14);
  --color-border-5: rgba(15, 34, 49, .16);
  --color-border-6: rgba(15, 34, 49, .18);
  --color-dark-bg: #0A2233;
  --color-dark-muted: #B4CBDA;
  --color-dark-muted-2: #8FAABD;

  --font-sans: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, Menlo, monospace;

  --content-max: 73.75rem; /* 1180px */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-24: 6rem;

  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 14px;

  --ease-out: cubic-bezier(.2, .7, .3, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { color: var(--color-accent-dark); }
p, h1, h2, h3, h4 { overflow-wrap: break-word; }
ul { list-style: none; }

/* Reassert the reset at element-selector specificity so it wins over
   Bootstrap's reboot.css regardless of stylesheet load order (specificity
   ties are broken by source order, but Bootstrap's element selectors would
   otherwise outrank our zero-specificity universal reset above). */
body, p, h1, h2, h3, h4, h5, h6, ul, ol, dl, dd, figure, fieldset, legend, button, input, select, textarea {
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  background: var(--color-accent-dark);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top .2s;
}
.skip-link:focus-visible {
  top: 1rem;
}

#main-content, #the-problem, #agentic-ai, #capability, #why-atlink, #about, #contact {
  scroll-margin-top: 6rem;
}

/* Honeypot anti-spam field: off-screen for sighted users, aria-hidden and
   tabindex="-1" (set in markup) keep it out of the AT and keyboard tab
   order. Left in the DOM/tab-visible-to-bots so naive scrapers fill it. */
/* .hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
} */

/* ==========================================================================
   Base
   ========================================================================== */
html {
  font-family: var(--font-sans);
  font-size: 100%;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
}

.wrap {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: 2.5rem;
}

@media (max-width: 700px) {
  .wrap { padding-inline: 1.25rem; }
}

.eyebrow {
  font: 500 0.72rem/1 var(--font-mono);
  letter-spacing: .16em;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

h1, h2, h3 { font-weight: 300; letter-spacing: -.028em; }
strong, b, .fw-bold { font-weight: 600; }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
[data-reveal] { opacity: 0; }
[data-reveal].is-visible {
  animation: reveal-rise .7s var(--ease-out) forwards;
}
@keyframes reveal-rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; animation: none !important; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.al-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 0.9375rem 1.75rem;
  white-space: nowrap;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s;
  cursor: pointer;
}
.al-btn--primary {
  background: var(--color-accent);
  color: #fff;
}
.al-btn--primary:hover, .al-btn--primary:focus-visible {
  background: var(--color-accent-dark);
  color: #fff;
}
.al-btn--outline {
  background: #fff;
  color: var(--color-text);
  border: 1px solid var(--color-border-6);
}
.al-btn--outline:hover, .al-btn--outline:focus-visible {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.al-btn--white {
  background: #fff;
  color: var(--color-text);
}
.al-btn--white:hover, .al-btn--white:focus-visible {
  background: var(--color-accent);
  color: #fff;
}
.al-btn--cta-dark {
  background: var(--color-accent);
  color: #fff;
  text-align: center;
}
.al-btn--cta-dark:hover, .al-btn--cta-dark:focus-visible {
  background: #fff;
  color: var(--color-accent-dark);
}
.al-btn-row { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin-top: 2.125rem; }

/* ==========================================================================
   Placeholder assets (until real files are dropped in)
   ========================================================================== */
.asset-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(45deg, rgba(0,142,216,.08), rgba(0,142,216,.08) 10px, rgba(0,142,216,.14) 10px, rgba(0,142,216,.14) 20px);
  border: 1px dashed var(--color-border-6);
  color: var(--color-text-muted-3);
  font: 500 0.75rem/1.4 var(--font-sans);
  text-align: center;
  padding: 0.5rem;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 248, .9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}
.site-header__inner {
  align-items: center;
  gap: 2.5rem;
  padding-block: 1.125rem;
}
.site-header__logo { height: 26px; width: auto; }
.site-header__toggler {
  border: 1px solid var(--color-border-6);
  padding: 0.375rem 0.625rem;
}
.site-header__toggler:focus { box-shadow: 0 0 0 3px rgba(0, 142, 216, .25); }
/* Self-hosted fallback: don't depend on the Bootstrap CDN stylesheet for this icon. */
.navbar-toggler-icon {
  display: inline-block; vertical-align: middle;
  width: 1.5em; height: 1.5em; background-repeat: no-repeat; background-position: center; background-size: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(15,34,49,0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.site-header__collapse {
  gap: 1.125rem;
}
.site-header__nav-links {
  align-items: center;
  gap: 1.5rem;
  margin: 0;
}
.site-header__nav-links .nav-link {
  font-size: 0.90625rem;
  font-weight: 600;
  color: var(--color-accent);
  padding: 0;
}
.site-header__nav-links .nav-link:hover, .site-header__nav-links .nav-link:focus {
  color: var(--color-accent-dark);
}
@media (min-width: 992px) {
  .site-header__collapse { margin-left: auto; align-items: center; justify-content: flex-end; }
}
@media (max-width: 991px) {
  .site-header__collapse { margin-top: 1.125rem; align-items: stretch; }
  .site-header__nav-links { flex-direction: column; align-items: flex-start; gap: 0.875rem; margin-bottom: 1.125rem; }
  .site-header__cta { width: 100%; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding-top: 4.75rem;
}
.hero__row {
  --bs-gutter-x: 3.5rem;
  align-items: center;
}
.hero h1 { font-size: 3.875rem; line-height: 1.03; text-wrap: balance; }
.hero__sub1 {
  margin-top: 1.625rem;
  font-size: 1.15625rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  max-width: 32.5rem;
  text-wrap: pretty;
}
.hero__sub2 {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-muted-3);
  max-width: 32.5rem;
  text-wrap: pretty;
}
.hero__trust {
  margin-top: 2.125rem;
  font-size: 0.84375rem;
  line-height: 1.5;
  color: var(--color-text-muted-4);
  max-width: 27.5rem;
}

.hero__visual { position: relative; height: 32.5rem; }
.hero__badges {
  position: absolute; left: 0; bottom: 2.5rem; width: 14.75rem;
  background: #fff; border-radius: 12px;
  box-shadow: 0 14px 34px rgba(15, 34, 49, .16);
  padding: 1rem;
  z-index: 3;
}
.hero__badges-row { display: flex; gap: 1.625rem; align-items: center; justify-content: center; }
.hero__badges img { height: 36px; width: auto; object-fit: contain; }

.hero__frame {
  position: absolute; right: 0; top: 0; bottom: 0; width: 25rem;
  border-radius: 18px; overflow: hidden;
  border: 10px solid var(--color-bg); box-sizing: border-box;
}
.hero__frame img, .hero__frame .asset-placeholder {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: 10px;
}
.hero__frame img.hero__overlay-img {
  opacity: 0;
  transition: opacity .5s ease;
}
.hero__frame img.hero__overlay-img.is-active { opacity: 1; }

.hero__nav {
  position: absolute; left: 0; top: 3.125rem; width: 14.75rem;
  background: #fff; border-radius: 12px;
  box-shadow: 0 14px 34px rgba(15, 34, 49, .16);
  padding: 0.6875rem 1rem;
  z-index: 3;
}
.hero__nav-list { display: flex; flex-direction: column; gap: 0.6875rem; }
.hero__nav-item {
  position: relative;
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.84375rem; font-weight: 600; letter-spacing: -.01em;
  color: var(--color-text-muted-4);
  transition: color .25s;
  border: none; background: none; text-align: left; width: 100%;
  min-height: 24px;
  text-transform: uppercase;
}
.hero__nav-item:not(:disabled) { cursor: default; }
.hero__nav-item:not(:first-child) { padding-top: 10px; }
.hero__nav-item:not(:first-child)::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--color-border);
}
.hero__nav-item:hover, .hero__nav-item.is-active { color: var(--color-accent); }
.hero__nav-arrow { width: 12px; flex: none; color: var(--color-accent); font-size: 0.8125rem; line-height: 1; opacity: 0; transition: opacity .25s; }
.hero__nav-item.is-active .hero__nav-arrow { opacity: 1; }

@media (max-width: 991px) {
  .hero__row { flex-direction: column; --bs-gutter-x: 0; }
  .hero__visual { display: none; }
}
@media (max-width: 767px) {
  .hero { padding-top: 2.5rem; }
}

/* ==========================================================================
   Clients
   ========================================================================== */
.clients { margin-top: 6rem; }
.clients h2 { font-size: 3.5625rem; line-height: 1.03; max-width: 47.5rem; text-wrap: balance; }
.clients__grid {
  margin-top: 2.75rem;
  --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem;
}
.clients__tile-inner {
  height: 7.375rem; background: #fff; border: 1px solid var(--color-border-2);
  border-radius: var(--radius-md);
  display: grid; place-items: center; padding: 1.125rem 1.375rem;
  transition: border-color .2s;
}
.clients__tile-inner:hover { border-color: rgba(0, 142, 216, .45); }
.clients__tile-inner img { max-width: 100%; max-height: 5.125rem; width: auto; height: auto; object-fit: contain; }

/* ==========================================================================
   Problem section
   ========================================================================== */
.problem {
  margin-top: 6rem;
}
.problem__row {
  --bs-gutter-x: 4rem;
}
.problem h2 { font-size: 3.5625rem; line-height: 1.03; text-wrap: balance; }
.problem__lead {
  margin-top: 1.375rem; font-size: 1.03125rem; line-height: 1.6;
  color: var(--color-text-muted-2); text-wrap: pretty;
}
.problem__list { display: flex; flex-direction: column; }
.problem__item {
  display: flex; padding: 1.625rem 0; border-top: 1px solid var(--color-border-5);
  align-items: flex-start; gap: 1rem;
}
.problem__list .problem__item:last-child { border-bottom: 1px solid var(--color-border-5); }
.problem__check {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--color-accent); display: grid; place-items: center; margin-top: 3px;
}
.problem__item span:last-child {
  font-size: 1.5rem; font-weight: 400; line-height: 1.25; letter-spacing: -.022em;
}
@media (min-width: 992px) {
  .problem .al-btn-row { flex-wrap: nowrap; }
}
@media (max-width: 991px) {
  .problem__row { flex-direction: column; --bs-gutter-x: 0; gap: 2rem; }
}

/* ==========================================================================
   Beyond Chatbots (agent) section
   ========================================================================== */
.agent { margin-top: 6rem; }
.agent h2 { margin-bottom: 1.25rem; font-size: 3.5625rem; line-height: 1.03; text-wrap: balance; max-width: none; }
.agent__grid {
  margin-top: 0;
  --bs-gutter-x: 3.5rem; align-items: flex-start;
}
.agent__copy { display: flex; flex-direction: column; gap: 1.375rem; }
.agent__copy p { color: var(--color-text-muted); font-size: 1.0625rem; line-height: 1.62; text-wrap: pretty; }
.agent__copy p:first-child { font-size: 1.625rem; line-height: 1.28; font-weight: 400; letter-spacing: -.022em; color: var(--color-text); }
.agent__photo { position: relative; height: 27.5rem; border-radius: var(--radius-lg); overflow: hidden; margin-top: 10px; }
.agent__photo img, .agent__photo .asset-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.agent__photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,34,51,.15) 0%, rgba(10,34,51,.55) 50%, rgba(10,34,51,.92) 100%);
}
.agent__quote {
  position: absolute; left: 2rem; right: 2rem; bottom: 1.875rem;
  color: #fff; font-size: 1.4375rem; line-height: 1.3; font-weight: 400;
  letter-spacing: -.02em; text-wrap: pretty; font-style: italic;
  text-align: center;
}
@media (max-width: 991px) {
  .agent__grid { flex-direction: column; --bs-gutter-x: 0; gap: 2rem; }
  .agent__photo { margin-top: 0; }
}

/* ==========================================================================
   Capability section
   ========================================================================== */
.capability { margin-top: 6rem; background: var(--color-surface-blue); padding: 5rem 0; }
.capability h2 { margin-bottom: 0.875rem; font-size: 3.5625rem; line-height: 1.03; max-width: 56.25rem; text-wrap: balance; }
.capability__sub { margin-top: 0; font-size: 1.625rem; line-height: 1.28; color: var(--color-text-muted-2); max-width: 38.75rem; }
.capability__grid {
  --bs-gutter-x: 4rem; align-items: stretch; margin-top: 3rem;
}
.capability__photo { min-width: 0; min-height: 32.5rem; border-radius: 14px; overflow: hidden; }
.capability__photo img, .capability__photo.asset-placeholder { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.capability__layers { min-width: 0; display: flex; flex-direction: column; }
.capability__layers-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 2.5rem; }
.capability__layer { border-top: 1px solid var(--color-border-5); }
.capability__layer h3 { padding-top: 1.125rem; font-size: 1.625rem; font-weight: 400; letter-spacing: -.022em; line-height: 1.2; }
.capability__layer p { margin-top: 0.625rem; margin-bottom: 1.25rem; font-size: 1.0625rem; line-height: 1.6; color: var(--color-text-muted); max-width: 35rem; text-wrap: pretty; }
.capability__closing { border-top: 1px solid var(--color-border-5); padding-top: 1.625rem; margin-top: auto; }
.capability__closing p { margin: 0 0 1.375rem; font-size: 1.0625rem; line-height: 1.55; font-weight: 500; letter-spacing: -.015em; max-width: 35rem; text-wrap: pretty; }
@media (max-width: 991px) {
  .capability { padding: 3rem 0; }
  .capability__grid { flex-direction: column; --bs-gutter-x: 0; gap: 2rem; margin-top: 2rem; }
  .capability__photo {
    height: 20rem; min-height: 20rem; border-radius: 0;
    width: 100vw; max-width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
  }
  .capability__photo img { border-radius: 0; }
  .capability__layers-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials { margin-top: 5.5rem; }
.testimonials h2 { margin-bottom: 2.75rem; font-size: 3.5625rem; line-height: 1.03; }
.testimonials__grid { --bs-gutter-x: 0; align-items: stretch; }
.testimonials__list { min-width: 0; display: flex; flex-direction: column; order: 2; }
.testimonials__row {
  border-top: 1px solid var(--color-border-4); padding: 1.375rem 0 1.375rem 2rem;
  cursor: pointer; opacity: .32; transition: opacity .25s;
  display: flex; gap: 1.25rem; align-items: center;
  width: 100%; text-align: left; background: none; border-left: none; border-right: none; border-bottom: none;
}
.testimonials__list > .testimonials__row:last-of-type { }
.testimonials__row.is-active { opacity: 1; }
.testimonials__list::after { content: ''; display: block; border-top: 1px solid var(--color-border-4); }
.testimonials__logo {
  width: 9.375rem; height: 4.75rem; flex: none; background: #fff; border: 1px solid var(--color-border-2);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  padding: 0.5rem 0.75rem; box-sizing: border-box; overflow: hidden;
}
.testimonials__logo img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.testimonials__name { font-size: 1.375rem; font-weight: 400; letter-spacing: -.02em; line-height: 1.2; }
.testimonials__role, .testimonials__org { font-size: 0.90625rem; line-height: 1.5; color: var(--color-text-muted-3); margin-top: 0.3rem; }
.testimonials__org { margin-top: 0; }

.testimonials__panel {
  min-width: 0; background: var(--color-surface-blue); border-radius: 14px;
  padding: 2.5rem 2.375rem; display: flex; flex-direction: column; order: 1;
}
.testimonials__tag { font: 500 0.6875rem/1 var(--font-mono); letter-spacing: .14em; color: var(--color-accent); margin-bottom: 1.375rem; text-transform: uppercase; }
.testimonials__quote { margin: 0; font-size: 1.5625rem; line-height: 1.38; font-weight: 300; letter-spacing: -.018em; color: var(--color-text); text-wrap: pretty; font-style: italic; }
.testimonials__arrows { display: flex; gap: 0.75rem; margin-top: auto; padding-top: 2rem; justify-content: flex-end; }
.testimonials__arrow {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(15, 34, 49, .08);
  display: grid; place-items: center; font-size: 1.0625rem; cursor: pointer; transition: .2s;
}
.testimonials__arrow:hover, .testimonials__arrow:focus-visible { background: var(--color-accent); color: #fff; }
@media (max-width: 991px) {
  .testimonials__grid { flex-direction: column; gap: 2rem; }
}

/* ==========================================================================
   Solutions
   ========================================================================== */
.solutions { margin-top: 6rem; }
.solutions h2 { margin-bottom: 2.75rem; font-size: 3.5625rem; line-height: 1.03; max-width: none; text-wrap: nowrap; }
.solutions__grid { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1rem; align-items: stretch; }
.solutions__card { display: flex; }
.solutions__card-inner { background: var(--color-surface-blue); border-radius: var(--radius-md); padding: 1.625rem 1.875rem; display: flex; flex-direction: column; flex: 1 1 auto; box-sizing: border-box; }
.solutions__card-inner h3 { font-size: 1.5rem; font-weight: 400; letter-spacing: -.022em; line-height: 1.25; min-height: 2.5em; }
.solutions__body { margin-top: 1.375rem; padding-top: 1.25rem; border-top: 1px solid var(--color-border-3); display: flex; flex-direction: column; gap: 0.75rem; }
.solutions__blurb { margin: 0 0 0.375rem; font-size: 1.03125rem; line-height: 1.55; color: var(--color-text-muted-5); text-wrap: pretty; }
.solutions__item { display: flex; flex-direction: column; gap: 0.125rem; font-size: 0.96875rem; line-height: 1.55; }
.solutions__item span { color: var(--color-text-muted-3); }
@media (max-width: 991px) {
  .solutions h2 { text-wrap: balance; }
}

/* ==========================================================================
   Industries
   ========================================================================== */
.industries { margin-top: 6rem; }
.industries h2 { margin-bottom: 0.875rem; font-size: 3.5625rem; line-height: 1.03; max-width: none; text-wrap: balance; }
.industries__sub { font-size: 1.03125rem; color: var(--color-text-muted-2); }
.industries__grid { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; margin-top: 2.375rem; }
.ind-tile-inner { position: relative; height: 18.75rem; border-radius: var(--radius-lg); overflow: hidden; background: var(--color-dark-bg); }
.ind-tile-inner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ind-tile__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,34,51,.42) 0%, rgba(10,34,51,.05) 45%, rgba(10,34,51,.82) 100%); }
.ind-tile__body { position: absolute; left: 1.375rem; bottom: 1.375rem; right: 1.375rem; color: #fff; }
.ind-tile__body h3 { margin: 0; font-size: 1.3125rem; font-weight: 700; letter-spacing: -.015em; }
.ind-tile__body p {
  margin: 0; font-size: 0.875rem; line-height: 1.5; color: rgba(255,255,255,.85);
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .35s ease, opacity .3s ease, margin-top .35s ease;
}
.ind-tile-inner:hover .ind-tile__body p, .ind-tile-inner:focus-within .ind-tile__body p { max-height: 80px; opacity: 1; margin-top: 0.5rem; }
@media (max-width: 991px) {
  .ind-tile { flex: 0 0 50%; max-width: 50%; }
  .ind-tile--wide { flex: 0 0 100%; max-width: 100%; }
}
@media (max-width: 560px) {
  .ind-tile, .ind-tile--wide { flex: 0 0 100%; max-width: 100%; }
}

/* ==========================================================================
   Why AtLink
   ========================================================================== */
.reasons { margin-top: 6rem; }
.reasons h2 { margin-bottom: 2.75rem; font-size: 3.5625rem; line-height: 1.03; max-width: none; text-wrap: balance; }
.reasons__grid { --bs-gutter-x: 2.5rem; --bs-gutter-y: 0; }
.reasons__item { border-top: 1px solid var(--color-border-5); }
.reasons__item h3 { padding-top: 1.375rem; font-size: 1.625rem; font-weight: 400; letter-spacing: -.022em; line-height: 1.2; }
.reasons__item p { margin: 0.625rem 0 1.375rem; font-size: 1.03125rem; line-height: 1.6; color: var(--color-text-muted); max-width: 32.5rem; text-wrap: pretty; }
.reasons__grid::after { content: ''; flex: 0 0 100%; order: 999; border-top: 1px solid var(--color-border-5); }

/* ==========================================================================
   About
   ========================================================================== */
.about {
  margin-top: 6rem; position: relative; height: 41.25rem; overflow: hidden;
}
.about img, .about > .asset-placeholder {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
}
.about__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,26,40,.78) 0%, rgba(7,26,40,.66) 40%, rgba(7,26,40,.34) 54%, rgba(7,26,40,.72) 78%, rgba(7,26,40,.88) 100%);
}
.about__content {
  position: absolute; inset: 0; padding: 3.5rem 4rem;
  display: grid; grid-template-rows: 1fr auto auto auto; gap: 0; color: #fff;
}
.about__eyebrow { margin-bottom: 1.25rem; font: 500 0.71875rem/1 var(--font-mono); letter-spacing: .16em; color: #9FD8F6; text-transform: uppercase; }
.about h2 { margin-bottom: 2.125rem; font-size: 3.5625rem; line-height: 1.03; max-width: none; text-wrap: balance; color: #fff; }
.about__grid { --bs-gutter-x: 3rem; align-items: start; }
.about__grid p { margin: 0; font-size: 1rem; line-height: 1.62; color: rgba(255,255,255,.9); text-wrap: pretty; }
@media (max-width: 991px) {
  .about { height: auto; min-height: 34rem; }
  .about__content { position: relative; inset: auto; padding: 3rem 1.5rem; grid-template-rows: auto auto auto; }
  .about__grid { flex-direction: column; --bs-gutter-x: 0; gap: 2rem; }
}

/* ==========================================================================
   CSR
   ========================================================================== */
.csr { margin-top: 0; background: var(--color-surface-blue); padding: 7rem 0 9.5rem; }
.csr h3 { margin-bottom: 1.625rem; font-size: 3.5625rem; font-weight: 300; letter-spacing: -.028em; line-height: 1.03; }
.csr__grid { --bs-gutter-x: 2.5rem; align-items: flex-start; }
.csr__gallery {
  display: grid; grid-template-columns: 1.2fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 0.75rem; height: 20rem;
}
.csr__gallery img, .csr__gallery .asset-placeholder {
  width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-md); display: block;
}
.csr__gallery img:first-child { grid-row: 1 / 3; }
.csr__grid p { margin: 0; font-size: 1rem; line-height: 1.62; color: var(--color-text-muted-2); text-wrap: pretty; }
@media (max-width: 767px) {
  .csr__grid { flex-direction: column; --bs-gutter-x: 0; gap: 2rem; }
  .csr__gallery { height: 16rem; }
}

/* ==========================================================================
   Contact CTA
   ========================================================================== */
.contact-cta { margin-top: 0; background: var(--color-dark-bg); color: #fff; position: relative; overflow: hidden; }
.contact-cta__glow {
  position: absolute; inset: auto -10% -60% auto; width: 40rem; height: 40rem;
  background: radial-gradient(circle, rgba(0,142,216,.35), transparent 62%);
}
.contact-cta__inner {
  position: relative; padding-block: 5.5rem;
}
.contact-cta__row {
  --bs-gutter-x: 3.5rem;
  align-items: center;
}
.contact-cta h2 { margin-bottom: 1.125rem; font-size: 3.5625rem; line-height: 1.03; text-wrap: balance; color: #fff; }
.contact-cta p { margin: 0; font-size: 1.09375rem; line-height: 1.6; color: var(--color-dark-muted); max-width: 32.5rem; text-wrap: pretty; }
.contact-cta__form {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg);
  padding: 1.75rem 1.625rem; display: flex; flex-direction: column; gap: 0.75rem;
}
.contact-cta__form-title { font-size: 1.5rem; font-weight: 700; color: #fff; letter-spacing: -.01em; margin-bottom: 0.375rem; text-align: center; }
.contact-cta__form label { font-size: 1.09375rem; line-height: 1.6; color: var(--color-dark-muted); margin-bottom: -0.25rem; }
.contact-cta__form input, .contact-cta__form textarea {
  width: 100%; box-sizing: border-box; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm); padding: 0.8125rem 0.9375rem; color: #fff; font-size: 0.90625rem;
}
.contact-cta__form input::placeholder, .contact-cta__form textarea::placeholder { color: rgba(255,255,255,.5); }
.contact-cta__form input:focus, .contact-cta__form textarea:focus { border-color: var(--color-accent); }
.contact-cta__form button[type="submit"] { margin-top: 5px; }
.contact-cta__note { margin: 0.375rem 0 0; font-size: 0.84375rem; line-height: 1.55; color: var(--color-dark-muted-2); text-align: center; }
.contact-cta p.contact-cta__note--error { color: #FF8A80; }
.contact-cta__form p.schedule-form__mandatory { margin: 0; font-size: 0.84375rem; line-height: 1.55; }
.contact-cta__form .g-recaptcha { margin-bottom: 5px; }
@media (max-width: 991px) {
  .contact-cta__inner { padding-block: 3.5rem; }
  .contact-cta__row { flex-direction: column; --bs-gutter-x: 0; gap: 2rem; }
}

/* ==========================================================================
   Mobile section-spacing normalization
   Keeps the gap above every major section consistent on small screens
   instead of the desktop 6rem/5.5rem/3.5rem mix.
   ========================================================================== */
@media (max-width: 991px) {
  .clients, .problem, .agent, .capability, .testimonials,
  .solutions, .industries, .reasons, .about {
    margin-top: 4rem;
  }
}

/* ==========================================================================
   Mobile/tablet heading scale
   Section h1/h2 (and the CSR h3 used as a heading) sit at ~57-62px on
   desktop; that's oversized under 992px, so scale down ~25%.
   ========================================================================== */
@media (max-width: 991px) {
  .hero h1 { font-size: 2.90625rem; }
  .clients h2, .problem h2, .agent h2, .capability h2, .testimonials h2,
  .solutions h2, .industries h2, .reasons h2, .about h2, .contact-cta h2,
  .csr h3 {
    font-size: 2.671875rem;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--color-bg); padding: 4rem 0 2rem; }
.site-footer__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.site-footer__top > * { flex: 1 1 auto; min-width: 0; }
.site-footer__logo { height: 32px; width: auto; }
.site-footer__logo.asset-placeholder { width: 140px; height: 32px; }
.site-footer__tagline { margin: 1.375rem 0 0; font-size: 1rem; line-height: 1.6; color: var(--color-text-muted); }
.site-footer__meta { display: flex; gap: 3.5rem; margin-top: 1.375rem; font-size: 0.96875rem; line-height: 1.6; color: var(--color-text-muted); flex-wrap: wrap; }
.site-footer__addr { display: flex; flex-direction: column; gap: 0.375rem; }
.site-footer__phones { display: flex; flex-direction: column; gap: 0.375rem; }
.site-footer__phones a { color: var(--color-text); text-decoration: none; font-weight: 600; }
.site-footer__certs { display: flex; gap: 1.25rem; align-items: center; margin-left: auto; }
.site-footer__certs img { height: 51px; width: auto; object-fit: contain; }
.site-footer__bottom { margin-top: 4.5rem; padding-top: 1.5rem; border-top: 1px solid var(--color-border-3); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.site-footer__copy { font-size: 0.9375rem; color: var(--color-text-muted-3); }
.site-footer__social { display: flex; gap: 0.75rem; align-items: center; }
.social-icon { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: #fff; transition: opacity .2s; }
.social-icon:hover, .social-icon:focus-visible { opacity: .85; }
.social-icon--linkedin { background: #0A66C2; }
.social-icon--facebook { background: #1877F2; }
.social-icon--instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
@media (max-width: 900px) {
  .site-footer__meta { gap: 1.5rem; }
}
@media (max-width: 767px) {
  .site-footer__certs { margin-left: 0; }
}

/* ==========================================================================
   Schedule Meeting Modal
   ========================================================================== */
.schedule-modal {
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--color-dark-bg); color: #fff;
}
.schedule-modal__close { position: absolute; top: 1.5rem; right: 1.5rem; z-index: 1; filter: invert(1) grayscale(1) brightness(2); }
/* Self-hosted fallback: don't depend on the Bootstrap CDN stylesheet for this icon. */
.btn-close {
  box-sizing: content-box; width: 1em; height: 1em; padding: 0.25em; color: #000;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3E%3Cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3E%3C/svg%3E") center/1em auto no-repeat;
  border: 0; border-radius: 0.375rem; opacity: 0.5;
}
.btn-close:hover { color: #000; opacity: 0.75; }
.schedule-modal__body { padding: 2.75rem; }
.schedule-modal__title { font-size: 1.75rem; font-weight: 700; color: #fff; letter-spacing: -.01em; }
.schedule-modal__subtitle { margin-top: 0.5rem; font-size: 1.0625rem; color: var(--color-dark-muted); }
.schedule-form { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.125rem; }
.schedule-form__row { display: flex; flex-direction: column; gap: 0.5rem; }
.schedule-form__label { font-size: 0.9375rem; color: var(--color-dark-muted); }
.schedule-form__req { color: #FF8A80; }
.schedule-form__input {
  width: 100%; box-sizing: border-box; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-sm); padding: 0.8125rem 0.9375rem; font-size: 0.90625rem;
  font-family: var(--font-sans); color: #fff; transition: border-color .2s;
  color-scheme: dark;
}
.schedule-form__input::placeholder { color: rgba(255,255,255,.5); }
.schedule-form__input:focus { border-color: var(--color-accent); }
.schedule-form__input--textarea { resize: vertical; }
.schedule-form__mandatory { font-size: 0.84375rem; color: var(--color-dark-muted-2); }
/* .schedule-form__status { display: none; font-size: 0.875rem; line-height: 1.5; }
.schedule-form__status.is-visible { display: block; }
.schedule-form__status--error { color: #FF8A80; }
.schedule-form__status--success { color: #9FE0B0; } */
.schedule-form__status { display: block; margin: 0.375rem 0 0; font-size: 0.84375rem; line-height: 1.55; color: var(--color-dark-muted-2); text-align: center; }
.schedule-form__status--error { color: #FF8A80; }
.schedule-form__status--success { color: #9FE0B0; }
.schedule-form__submit { width: 100%; padding-block: 0.9375rem; }
.schedule-form__submit:hover, .schedule-form__submit:focus-visible { background: var(--color-accent); color: #fff; }
.schedule-form__submit:disabled, .contact-cta__form button:disabled { opacity: .6; cursor: not-allowed; }
.form-honeypot {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
.g-recaptcha {
    margin: 16px 0;
}
@media (max-width: 640px) {
  .schedule-modal__body { padding: 2rem 1.5rem; }
  .schedule-modal__title { font-size: 1.5rem; }
}

/* ==========================================================================
   Back to top (mobile only)
   ========================================================================== */
.back-to-top {
  display: none;
}
@media (max-width: 767px) {
  .back-to-top {
    display: grid; place-items: center;
    position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 1040;
    width: 44px; height: 44px; border-radius: 50%;
    -webkit-appearance: none; appearance: none;
    background-color: var(--color-accent); color: #fff; border: none; cursor: pointer;
    box-shadow: 0 6px 18px rgba(15, 34, 49, .25);
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity .25s, transform .25s, visibility .25s;
  }
  .back-to-top.is-visible {
    opacity: 1; visibility: visible; transform: translateY(0);
  }
}
