/* ==========================================================================
   LTL AI — design system
   Palette, type scale and components derived from the L.T.L logo:
   near-black navy ground, brushed-silver type, single blue accent.
   ========================================================================== */

:root {
  /* Ground */
  --ink:        #04070e;
  --ink-2:      #070c17;
  --panel:      #0a1120;
  --panel-2:    #0d1728;
  --panel-hi:   #111e33;

  /* Brand */
  --blue:       #2c8cf0;
  --blue-hi:    #58a8ff;
  --blue-deep:  #1257c9;
  --blue-abyss: #0a2a5e;

  /* Type */
  --silver:     #e8edf5;
  --silver-2:   #c3cdda;
  --muted:      #8b9bb2;
  --muted-2:    #64748b;

  /* Lines */
  --line:       rgba(255, 255, 255, 0.09);
  --line-2:     rgba(255, 255, 255, 0.045);
  --line-blue:  rgba(44, 140, 240, 0.38);

  /* Metrics */
  --nav-h:      96px;
  --gutter:     clamp(20px, 5vw, 64px);
  --maxw:       1280px;
  --maxw-text:  760px;

  --ease:       cubic-bezier(0.22, 1, 0.36, 1);
  --ease-2:     cubic-bezier(0.65, 0, 0.35, 1);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue",
          Arial, "Noto Sans", sans-serif;
}

/* --------------------------------------------------------------- reset -- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--silver-2);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  margin: 0;
  color: var(--silver);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--blue-deep); color: #fff; }

:focus-visible {
  outline: 2px solid var(--blue-hi);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--blue);
  color: #fff;
  padding: 12px 20px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ------------------------------------------------------------- layout -- */

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 980px; }

.section { padding-block: clamp(72px, 10vw, 132px); position: relative; }
.section--tight { padding-block: clamp(56px, 7vw, 88px); }
.section--edge { border-top: 1px solid var(--line-2); }
.section--panel { background: linear-gradient(180deg, var(--ink-2), var(--ink)); }
.section--deep {
  background:
    radial-gradient(120% 90% at 15% 0%, rgba(18, 87, 201, 0.16), transparent 62%),
    var(--ink-2);
}

.grid { display: grid; gap: clamp(20px, 2.6vw, 34px); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------- type helpers -- */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 26px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent);
  flex: none;
}
.eyebrow--center { justify-content: center; }

.h-display {
  font-size: clamp(40px, 7.2vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 200;
}
.h1 { font-size: clamp(34px, 5.2vw, 62px); letter-spacing: -0.03em; font-weight: 250; }
.h2 { font-size: clamp(28px, 3.6vw, 46px); letter-spacing: -0.025em; }
.h3 { font-size: clamp(21px, 2vw, 27px); letter-spacing: -0.015em; font-weight: 400; }
.h4 { font-size: 18px; letter-spacing: -0.01em; font-weight: 500; }

.lede {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.62;
  color: var(--muted);
  font-weight: 300;
  max-width: var(--maxw-text);
}
.muted { color: var(--muted); }
.small { font-size: 14px; line-height: 1.65; }
.tiny { font-size: 12.5px; line-height: 1.6; color: var(--muted-2); }
.accent { color: var(--blue); }
.mono-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.rule {
  height: 1px;
  border: 0;
  margin: 0;
  background: linear-gradient(90deg, var(--line), transparent);
}

/* ------------------------------------------------------------ buttons -- */

.btn {
  --btn-fg: var(--silver);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--btn-fg);
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--blue-deep), var(--blue));
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
  z-index: -1;
}
.btn > * { position: relative; z-index: 1; }
.btn:hover { color: #fff; border-color: transparent; }
.btn:hover::after { transform: translateY(0); }
.btn .arw { transition: transform 0.4s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

.btn--primary {
  background: linear-gradient(120deg, var(--blue-deep), var(--blue));
  border-color: transparent;
  color: #fff;
}
.btn--primary::after { background: linear-gradient(120deg, var(--blue), var(--blue-hi)); }
.btn--ghost { border-color: rgba(255, 255, 255, 0.18); }
.btn--sm { padding: 11px 22px; font-size: 11px; }

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.link-more .arw { transition: transform 0.35s var(--ease); }
.link-more:hover .arw { transform: translateX(5px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

/* --------------------------------------------------------------- nav -- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease),
              height 0.45s var(--ease), backdrop-filter 0.45s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 7, 14, 0.72), transparent);
  opacity: 1;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
}
.nav.is-stuck {
  height: 74px;
  background: rgba(5, 9, 18, 0.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line-2);
}
.nav.is-stuck::before { opacity: 0; }

.nav__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 14px; flex: none; }

/* the L.T.L lockup, straight from the brand artwork */
.brand__logo {
  height: 66px;
  width: auto;
  flex: none;
  transition: height 0.45s var(--ease);
}
.nav.is-stuck .brand__logo { height: 52px; }
.footer .brand__logo { height: 84px; }

.brand__rule {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, transparent, var(--line), transparent);
  flex: none;
}
.brand__desc {
  font-size: 9.5px;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--blue);
  white-space: nowrap;
}

@media (max-width: 560px) {
  .brand__rule, .brand__desc { display: none; }
  .brand__logo { height: 54px; }
  .nav.is-stuck .brand__logo { height: 46px; }
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__item { position: relative; }
.nav__link {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 15px;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.09em;
  color: var(--silver-2);
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.nav__link:hover, .nav__item:hover > .nav__link { color: #fff; }
.nav__link[aria-current="page"] { color: #fff; }
.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 2px;
  height: 1px;
  background: var(--blue);
}
.nav__caret { width: 8px; height: 8px; opacity: 0.55; transition: transform 0.3s var(--ease); }
.nav__item:hover .nav__caret { transform: rotate(180deg); }

.nav__drop {
  position: absolute;
  top: calc(100% + 6px);
  left: 4px;
  min-width: 250px;
  padding: 10px;
  margin: 0;
  list-style: none;
  background: rgba(9, 15, 27, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
}
.nav__item:hover .nav__drop,
.nav__item:focus-within .nav__drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__drop a {
  display: block;
  padding: 11px 14px;
  font-size: 13px;
  color: var(--silver-2);
  border-left: 1px solid transparent;
  transition: all 0.28s var(--ease);
}
.nav__drop a small {
  display: block;
  font-size: 11.5px;
  color: var(--muted-2);
  letter-spacing: 0;
}
.nav__drop a:hover {
  color: #fff;
  background: rgba(44, 140, 240, 0.08);
  border-left-color: var(--blue);
}

.nav__actions { display: flex; align-items: center; gap: 14px; flex: none; }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 1px;
  background: var(--silver);
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 27px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav__menu, .nav__actions .btn { display: none; }
  .burger { display: block; }
}

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  padding: calc(var(--nav-h) + 24px) var(--gutter) 48px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }
.drawer ul { list-style: none; margin: 0; padding: 0; }
.drawer > ul > li { border-bottom: 1px solid var(--line-2); }
.drawer > ul > li > a {
  display: block;
  padding: 20px 0;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--silver);
}
.drawer .drawer__sub { padding: 0 0 18px 2px; }
.drawer .drawer__sub a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: var(--muted);
}
.drawer .btn { margin-top: 32px; width: 100%; justify-content: center; }

/* --------------------------------------------------------------- hero -- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4, 7, 14, 0.78) 0%, rgba(4, 7, 14, 0.18) 32%,
                    rgba(4, 7, 14, 0.58) 70%, rgba(4, 7, 14, 0.96) 100%),
    linear-gradient(90deg, rgba(4, 7, 14, 0.80) 0%, rgba(4, 7, 14, 0.42) 42%,
                    rgba(4, 7, 14, 0) 74%),
    radial-gradient(80% 60% at 50% 55%, transparent 30%, rgba(4, 7, 14, 0.55) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(90px, 12vh, 150px);
  padding-top: calc(var(--nav-h) + 40px);
}
.hero__title { max-width: 15ch; }
.hero__title .w { display: inline-block; }
.hero__lede { margin-top: 30px; max-width: 620px; }

.hero__strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  border-top: 1px solid var(--line-2);
  background: linear-gradient(180deg, rgba(4, 7, 14, 0.2), rgba(4, 7, 14, 0.85));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero__strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hero__stat { padding: 26px 26px 26px 0; }
.hero__stat + .hero__stat { border-left: 1px solid var(--line-2); padding-left: 26px; }
.hero__stat b {
  display: block;
  white-space: nowrap;
  font-size: clamp(22px, 2.4vw, 31px);
  font-weight: 300;
  color: var(--silver);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.hero__stat span {
  display: block;
  margin-top: 7px;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
}
@media (max-width: 860px) {
  .hero__inner { padding-bottom: 250px; }
  .hero__strip .wrap { grid-template-columns: repeat(2, 1fr); }
  .hero__stat:nth-child(n+3) { border-top: 1px solid var(--line-2); }
  .hero__stat { padding: 18px 18px 18px 0; }
  .hero__stat:nth-child(odd) { padding-left: 0; border-left: 0; }
}

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: 150px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-2);
  writing-mode: vertical-rl;
}
.scroll-cue i {
  display: block;
  width: 1px;
  height: 62px;
  background: linear-gradient(180deg, var(--blue), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue-hi);
  animation: cue 2.4s var(--ease-2) infinite;
}
@keyframes cue {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}
@media (max-width: 900px) { .scroll-cue { display: none; } }

/* page hero (inner pages) */
.phero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(70px, 11vw, 132px));
  padding-bottom: clamp(56px, 8vw, 96px);
  overflow: hidden;
  border-bottom: 1px solid var(--line-2);
}
.phero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 120% at 78% 8%, rgba(44, 140, 240, 0.20), transparent 58%),
    radial-gradient(70% 90% at 8% 100%, rgba(18, 87, 201, 0.13), transparent 60%),
    var(--ink-2);
}
.phero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(70% 70% at 50% 40%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(70% 70% at 50% 40%, #000, transparent 78%);
}
.phero > .wrap { position: relative; z-index: 1; }
.phero .lede { margin-top: 26px; }

.crumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 26px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.crumbs a:hover { color: var(--blue); }
.crumbs span { opacity: 0.4; }

/* --------------------------------------------------------- components -- */

.card {
  position: relative;
  padding: clamp(26px, 2.6vw, 38px);
  background: linear-gradient(165deg, var(--panel), var(--ink-2));
  border: 1px solid var(--line-2);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease),
              background 0.5s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--line-blue);
  background: linear-gradient(165deg, var(--panel-2), var(--ink-2));
}
.card:hover::before { opacity: 1; }
.card__ix {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--blue);
  margin-bottom: 20px;
}
.card__title { margin-bottom: 14px; }
.card p { color: var(--muted); font-size: 15px; }
.card .link-more { margin-top: auto; padding-top: 24px; }

.icard { display: block; }
.icard__ico {
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  color: var(--blue);
}
.icard__ico svg { width: 100%; height: 100%; }

/* numbered / bordered feature list */
.flist { list-style: none; margin: 0; padding: 0; }
.flist li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: clamp(16px, 3vw, 46px);
  padding: 30px 0;
  border-top: 1px solid var(--line-2);
  align-items: start;
}
.flist li:last-child { border-bottom: 1px solid var(--line-2); }
.flist .n {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--blue);
  padding-top: 6px;
}
.flist h3 { margin-bottom: 10px; }
.flist p { color: var(--muted); font-size: 15px; max-width: 68ch; }
@media (max-width: 620px) {
  .flist li { grid-template-columns: 1fr; gap: 10px; }
}

.mini {
  display: block;
  font-size: clamp(18px, 1.5vw, 21px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--silver);
  margin-bottom: 8px;
}

/* stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); }
.stat { background: var(--ink-2); padding: clamp(24px, 3vw, 40px); }
.stat b {
  display: block;
  font-size: clamp(28px, 3.1vw, 46px);
  font-weight: 200;
  color: var(--silver);
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
}
.stat b .u {
  display: inline;
  margin: 0;
  text-transform: none;
  color: var(--blue);
  font-size: 0.56em;
  font-weight: 300;
  letter-spacing: 0.01em;
}
.stat > span {
  display: block;
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
}
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* split content block */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}
.split--top { align-items: start; }
.split--wide-left { grid-template-columns: 1.15fr 1fr; }
@media (max-width: 900px) {
  .split, .split--wide-left { grid-template-columns: 1fr; }
}

.frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 100% at 20% 0%, rgba(44, 140, 240, 0.22), transparent 62%),
    linear-gradient(150deg, var(--panel-hi), var(--ink));
  overflow: hidden;
}
.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
}
.frame svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.frame--tall { aspect-ratio: 3 / 4; }

/* quote */
.quote {
  position: relative;
  padding: clamp(40px, 6vw, 76px);
  border: 1px solid var(--line-2);
  background:
    radial-gradient(100% 140% at 100% 0%, rgba(18, 87, 201, 0.16), transparent 60%),
    var(--ink-2);
}
.quote blockquote {
  margin: 0;
  font-size: clamp(21px, 2.7vw, 34px);
  font-weight: 200;
  line-height: 1.42;
  letter-spacing: -0.02em;
  color: var(--silver);
  max-width: 22ch;
}
.quote blockquote + .quote__by { margin-top: 34px; }
.quote__by { display: flex; align-items: center; gap: 16px; }
.quote__by i {
  width: 34px;
  height: 1px;
  background: var(--blue);
  flex: none;
}
.quote__by strong { display: block; color: var(--silver); font-weight: 500; font-size: 14px; }
.quote__by span { font-size: 12.5px; color: var(--muted-2); }

/* insight / news cards */
.post {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--line-2);
  background: var(--ink-2);
  transition: border-color 0.45s var(--ease), transform 0.45s var(--ease);
}
.post:hover { border-color: var(--line-blue); transform: translateY(-5px); }
.post__img {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--panel-hi), var(--ink));
}
.post__img svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.post__body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.post__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 16px;
}
.post__meta b { color: var(--blue); font-weight: 500; }
.post h3 { font-size: 19px; font-weight: 400; line-height: 1.35; margin-bottom: 12px; }
.post p { font-size: 14.5px; color: var(--muted); }
.post .link-more { margin-top: auto; padding-top: 22px; }

/* tables */
.table-wrap { overflow-x: auto; border: 1px solid var(--line-2); }
table.data {
  width: 100%;
  border-collapse: collapse;
  min-width: 660px;
  font-size: 14.5px;
}
table.data th, table.data td { padding: 18px 22px; text-align: left; }
table.data thead th {
  background: var(--ink-2);
  color: var(--muted-2);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}
table.data tbody tr { border-bottom: 1px solid var(--line-2); transition: background 0.3s; }
table.data tbody tr:hover { background: rgba(44, 140, 240, 0.045); }
table.data tbody tr:last-child { border-bottom: 0; }
table.data td strong { color: var(--silver); font-weight: 500; }
.tag {
  display: inline-block;
  padding: 4px 11px;
  border: 1px solid var(--line-blue);
  color: var(--blue);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* accordion */
.acc { border-top: 1px solid var(--line-2); }
.acc__item { border-bottom: 1px solid var(--line-2); }
.acc__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  background: none;
  border: 0;
  color: var(--silver);
  font: inherit;
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 300;
  letter-spacing: -0.01em;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
}
.acc__btn:hover { color: var(--blue-hi); }
.acc__ico { position: relative; width: 14px; height: 14px; flex: none; }
.acc__ico::before, .acc__ico::after {
  content: "";
  position: absolute;
  background: var(--blue);
  transition: transform 0.4s var(--ease);
}
.acc__ico::before { top: 6px; left: 0; width: 14px; height: 1px; }
.acc__ico::after { left: 6px; top: 0; width: 1px; height: 14px; }
.acc__btn[aria-expanded="true"] .acc__ico::after { transform: rotate(90deg); }
.acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}
.acc__panel > div { overflow: hidden; }
.acc__item.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__panel p { padding-bottom: 28px; color: var(--muted); max-width: 78ch; }

/* people */
.person { position: relative; }
.person__ph {
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line-2);
  background: linear-gradient(160deg, var(--panel-hi), var(--ink));
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  transition: border-color 0.45s var(--ease);
}
.person:hover .person__ph { border-color: var(--line-blue); }
.person__ph b {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 200;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.16);
}
.person__ph::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(4, 7, 14, 0.85));
}
.person h3 { margin-top: 20px; font-size: 18px; font-weight: 500; }
.person span { display: block; margin-top: 6px; font-size: 13px; color: var(--blue); }
.person p { margin-top: 12px; font-size: 14px; color: var(--muted); }

/* form */
.form { display: grid; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 9px; }
.field label {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.field input, .field select, .field textarea {
  padding: 15px 17px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  color: var(--silver);
  font: inherit;
  font-size: 15px;
  transition: border-color 0.3s, background 0.3s;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(44, 140, 240, 0.05);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field select {
  appearance: none;
  cursor: pointer;
  padding-right: 44px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M2 4l3 3 3-3' stroke='%232c8cf0' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
}
.field select option { background: var(--panel); color: var(--silver); }
.check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--muted);
  cursor: pointer;
}
.check input { margin-top: 3px; accent-color: var(--blue); width: 16px; height: 16px; flex: none; }
.form-note {
  padding: 14px 18px;
  border: 1px solid var(--line-blue);
  background: rgba(44, 140, 240, 0.07);
  color: var(--silver-2);
  font-size: 13.5px;
}

/* CTA band */
.cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(90% 130% at 82% 15%, rgba(44, 140, 240, 0.24), transparent 58%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  flex-wrap: wrap;
  padding-block: clamp(58px, 8vw, 96px);
}

/* logo strip / marquee */
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px clamp(20px, 3vw, 44px);
  align-items: center;
  padding-block: 34px;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.strip span {
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-2);
}
@media (max-width: 900px) { .strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .strip { grid-template-columns: 1fr; } }
.strip span em { font-style: normal; color: var(--blue); }

/* ------------------------------------------------------------- footer -- */

.footer {
  background: linear-gradient(180deg, var(--ink), #020409);
  border-top: 1px solid var(--line-2);
  padding-top: clamp(60px, 8vw, 92px);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(28px, 4vw, 60px);
  padding-bottom: 56px;
}
@media (max-width: 980px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__top { grid-template-columns: 1fr; } }
.footer__about p { color: var(--muted); font-size: 14px; max-width: 46ch; margin-top: 22px; }
.footer h4 {
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { font-size: 14px; color: var(--muted); transition: color 0.3s; }
.footer ul a:hover { color: var(--silver); }

.social { display: flex; gap: 10px; margin-top: 26px; }
.social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: all 0.35s var(--ease);
}
.social a:hover { color: #fff; border-color: var(--blue); background: rgba(44, 140, 240, 0.12); }
.social svg { width: 16px; height: 16px; }

.footer__legal {
  border-top: 1px solid var(--line-2);
  padding-block: 26px 30px;
}
.footer__legal .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  justify-content: space-between;
}
.footer__legal a, .footer__legal p { font-size: 12px; color: var(--muted-2); margin: 0; }
.footer__legal a:hover { color: var(--blue); }
.footer__legal nav { display: flex; flex-wrap: wrap; gap: 22px; }

.disclosure {
  border-top: 1px solid var(--line-2);
  padding-block: 30px 40px;
}
.disclosure p { font-size: 11.5px; line-height: 1.75; color: #55637a; max-width: 100%; }

/* --------------------------------------------------------- animations -- */

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

.hero__title .w {
  opacity: 0;
  transform: translateY(28px);
  animation: heroIn 1.1s var(--ease) forwards;
}
.hero__lede, .hero .btn-row, .hero__strip, .scroll-cue {
  opacity: 0;
  animation: fadeIn 1.1s var(--ease) forwards;
}
.hero__lede { animation-delay: 0.55s; }
.hero .btn-row { animation-delay: 0.7s; }
.hero__strip { animation-delay: 0.9s; }
.scroll-cue { animation-delay: 1.1s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }
@keyframes fadeIn { to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .hero__title .w, .hero__lede, .hero .btn-row, .hero__strip, .scroll-cue {
    opacity: 1; transform: none; animation: none;
  }
}

.no-video .hero__media video { display: none; }

/* --------------------------------------------------------------- misc -- */

.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-s { margin-top: 18px; }
.mt-m { margin-top: 34px; }
.mt-l { margin-top: clamp(40px, 5vw, 68px); }
.mb-l { margin-bottom: clamp(40px, 5vw, 68px); }
.head-block { max-width: 800px; margin-bottom: clamp(40px, 5vw, 66px); }
.head-block--center { margin-inline: auto; text-align: center; }
.head-block--center .eyebrow { justify-content: center; }
.head-block .lede { margin-top: 24px; }

.two-col-text { columns: 2; column-gap: clamp(30px, 5vw, 64px); }
@media (max-width: 760px) { .two-col-text { columns: 1; } }


/* ------------------------------------------- LTL AI additions -------- */

/* hero strip carrying the three pillars instead of numbers */
.hero__strip--pillars .wrap { grid-template-columns: repeat(3, 1fr); }
.hero__strip--pillars .hero__stat b {
  white-space: normal;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.hero__strip--pillars .hero__stat i {
  display: block;
  margin-bottom: 12px;
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  color: var(--blue);
}
@media (max-width: 860px) {
  .hero__inner { padding-bottom: 285px; }
  .hero__strip--pillars .wrap { grid-template-columns: 1fr; }
  .hero__strip--pillars .hero__stat { padding-block: 15px; }
  .hero__strip--pillars .hero__stat i { margin-bottom: 7px; }
  .hero__strip--pillars .hero__stat + .hero__stat {
    border-left: 0;
    border-top: 1px solid var(--line-2);
    padding-left: 0;
  }
}

/* "technology into capability" transformation band */
.xform { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
         background: var(--line-2); border: 1px solid var(--line-2); }
.xform > div { background: var(--ink-2); padding: clamp(24px, 3vw, 38px); }
.xform b {
  display: block;
  font-size: clamp(21px, 2.2vw, 29px);
  font-weight: 200;
  color: var(--silver);
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.xform span {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--muted);
}
.xform span::before { content: "\2192"; color: var(--blue); font-size: 15px; }
@media (max-width: 860px) { .xform { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .xform { grid-template-columns: 1fr; } }

/* chain of stages: Discover -> Design -> Build -> ... */
.chain {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  padding: 22px 0;
}
.chain span {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver-2);
}
.chain i { font-style: normal; color: var(--blue); }

/* plain capability list, two or three columns of ticked items */
.caps { list-style: none; margin: 0; padding: 0;
        display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px 34px; }
.caps--3 { grid-template-columns: repeat(3, 1fr); }
.caps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 15px;
  color: var(--silver-2);
}
.caps li::before {
  content: "";
  flex: none;
  width: 6px;
  height: 6px;
  margin-top: 9px;
  background: var(--blue);
  transform: rotate(45deg);
}
@media (max-width: 900px) { .caps, .caps--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .caps, .caps--3 { grid-template-columns: 1fr; } }

/* questions clients arrive with */
.asks { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.asks li {
  padding: 20px 24px;
  border-left: 2px solid var(--blue);
  background: linear-gradient(90deg, rgba(44, 140, 240, 0.07), transparent 70%);
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 300;
  color: var(--silver);
}

/* prominent scoping / compliance panel */
.notice {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line-blue);
  background: rgba(44, 140, 240, 0.06);
}
.notice h3 {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  font-weight: 500;
}
.notice p { color: var(--silver-2); font-size: 14.5px; }
.notice p + p { margin-top: 12px; }

/* things we will never say */
.nevers { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.nevers li {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 15px;
  color: var(--muted);
}
.nevers li::before {
  content: "";
  flex: none;
  width: 15px;
  height: 15px;
  border: 1px solid #7c4a55;
  position: relative;
  background:
    linear-gradient(45deg, transparent 44%, #a8636f 44%, #a8636f 56%, transparent 56%),
    linear-gradient(-45deg, transparent 44%, #a8636f 44%, #a8636f 56%, transparent 56%);
}

@media (max-width: 520px) {
  .eyebrow { letter-spacing: 0.22em; font-size: 10.5px; gap: 10px; }
  .eyebrow::before { width: 18px; }
}
