/* ============================================================
   LLM App Development page
   Dark, gradient-accented theme. Mirrors the architecture of
   dubai.css (BEM-ish `llm-` prefix, scroll-reveal via .llm-anim).
   ============================================================ */

/* The global stylesheets set `overflow-x: hidden` on <body>, which makes it a
   scroll container and silently disables `position: sticky` inside it. `clip`
   prevents the same horizontal overflow without creating a scroll container.
   Scoped with :has() so only this page is affected. */
body:has(.llm-page) {
  overflow-x: clip;
}

.llm-page {
  --llm-bg: #05060c;
  --llm-bg-2: #0a0c16;
  --llm-panel: #0e1120;
  --llm-border: rgba(255, 255, 255, 0.09);
  --llm-text: #eef1f8;
  --llm-muted: #a8b0c5;
  --llm-blue: #0071ff;
  --llm-blue-2: #01cef6;
  --llm-pink: #d947aa;
  --llm-purple: #802afa;

  position: relative;
  background: var(--llm-bg);
  color: var(--llm-text);
  overflow-x: clip;
  font-family:
    "Poppins",
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
}

.llm-page .container {
  max-width: 1240px;
}

/* ---- shared badge (glass pill) ---- */
.llm-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(62, 62, 62, 0.12),
    rgba(78, 78, 78, 0.12)
  );
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

.llm-badge img {
  width: 19px;
  height: 19px;
  flex: none;
}

/* ============================================================
   HERO
   ============================================================ */
.llm-hero {
  position: relative;
  isolation: isolate;
  padding: 90px 0 70px;
  overflow: hidden;
}

.llm-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.llm-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.llm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 6, 12, 0.55) 0%,
    rgba(5, 6, 12, 0.62) 55%,
    var(--llm-bg) 100%
  );
}

.llm-hero__robot {
  position: absolute;
  left: -37px;
  top: 42%;
  width: 364px;
  height: auto;
  opacity: 0.3;
  transform: scaleX(-1);
}

.llm-hero__glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
}

.llm-hero__glow--tl {
  top: -180px;
  left: -260px;
  background: radial-gradient(circle, rgba(128, 42, 250, 0.5), transparent 70%);
}

.llm-hero__glow--bl {
  bottom: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(217, 71, 170, 0.4), transparent 70%);
}

/* Square grid laid flat in perspective, fading out toward the horizon —
   the grey line pattern across the bottom of the Figma hero. */
.llm-hero__grid {
  position: absolute;
  left: -30%;
  right: -30%;
  bottom: 0;
  height: 600px;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(222, 228, 250, 0.8) 0 1px,
      transparent 1px 78px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(222, 228, 250, 0.8) 0 1px,
      transparent 1px 78px
    );
  /* 600px tall at 60deg with a 1200px perspective lands ~210px of visible floor. */
  transform: perspective(1200px) rotateX(60deg);
  transform-origin: bottom center;
  -webkit-mask-image: linear-gradient(
    to top,
    #000 0%,
    rgba(0, 0, 0, 0.6) 45%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to top,
    #000 0%,
    rgba(0, 0, 0, 0.6) 45%,
    transparent 100%
  );
  opacity: 0.45;
  pointer-events: none;
}

.llm-hero__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.llm-hero__title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 800px;
}

/* Figma runs this gradient across the whole heading (#0071FF -> #FFF at 93%),
   so within "LLM App" it only reaches a light blue. */
.llm-hero__title-grad {
  background: linear-gradient(90deg, #0071ff 0%, #7cc0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Once the reveal script splits the heading, the clip has to move onto the word
   spans themselves: a `background-clip: text` ancestor paints nothing for a
   child that is mid-fade, so these words stayed invisible until their opacity
   finished — which read as "LLM App" arriving after the rest of the line. */
.llm-hero__title-grad .llm-word {
  background: linear-gradient(90deg, #0071ff 0%, #7cc0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.llm-hero__subtitle {
  margin: 0;
  max-width: 1105px;
  font-weight: 300;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.62;
  color: #d7dbe8;
}

/* Breaks out of the centred hero column so the logo row spans the page. */
.llm-hero__proof {
  margin-top: 22px;
  width: 100vw;
  max-width: 1360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.llm-hero__proof-label {
  margin: 0;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.025em;
  color: #cdd3e2;
}

/* Single row spanning the full width, as in Figma. */
.llm-hero__logos {
  list-style: none;
  margin: 0;
  padding: 0 10px;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  opacity: 0.85;
}

.llm-hero__logos li {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .llm-hero {
    padding: 60px 0 50px;
  }

  .llm-hero__robot {
    display: none;
  }

  .llm-hero__cta {
    font-size: 16px;
  }

  .llm-hero__logos {
    gap: 16px 34px;
  }

  .llm-hero__logos li {
    font-size: 18px;
  }
}

/* ============================================================
   STATS
   ============================================================ */
.llm-stats {
  padding: 24px 0 40px;
}

.llm-stats__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.llm-stat {
  background: #0a0a0a;
  border: 1px solid #171717;
  border-radius: 5px;
  padding: 26px;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 44px;
}

.llm-stat__top {
  display: flex;
  align-items: center;
  gap: 18px;
}

.llm-stat__icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: none;
}

.llm-stat__icon svg {
  width: 38px;
  height: 38px;
}

.llm-stat__value {
  font-family: "Fraunces", "Playfair Display", Georgia, serif;
  font-size: clamp(46px, 4.6vw, 66px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
}

.llm-stat__label {
  margin: 0;
  font-family: "DM Mono", "Roboto Mono", ui-monospace, monospace;
  font-size: 16px;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: #b8b8b8;
}

@media (max-width: 900px) {
  .llm-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .llm-stats__grid {
    grid-template-columns: 1fr;
  }

  .llm-stat {
    min-height: 0;
    gap: 28px;
  }
}

/* ---- shared eyebrow (outlined pill) ---- */
.llm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid rgba(120, 140, 255, 0.4);
  border-radius: 999px;
  background: rgba(74, 107, 255, 0.06);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #cdd6ff;
}

/* ============================================================
   AWARDS & RECOGNITIONS
   ============================================================ */
.llm-awards {
  position: relative;
  padding: 90px 0 80px;
}

.llm-awards__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.llm-awards__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
  color: #fff;
}

.llm-awards__title > span:not(.llm-word) {
  background: linear-gradient(90deg, #2f8bff 0%, #9b5cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.llm-awards__text {
  margin: 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  color: #b8c0d4;
}

.llm-awards__grid {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.llm-award {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px 34px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid var(--llm-border);
  border-radius: 18px;
  text-align: center;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.llm-award::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 80% at 50% 0%,
    color-mix(in srgb, var(--accent) 16%, transparent),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.llm-award:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--llm-border));
}

.llm-award:hover::before {
  opacity: 1;
}

.llm-award__media {
  height: 150px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.llm-award__media img {
  max-width: 100%;
  max-height: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.llm-award__title {
  margin: 0 0 8px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
}

.llm-award__bar {
  width: 48px;
  height: 3px;
  border-radius: 3px;
  background: var(--accent);
  margin-top: auto;
}

/* trust bar */
.llm-awards__trust {
  list-style: none;
  margin: 0;
  padding: 22px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border: 1px solid var(--llm-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.llm-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.llm-trust__icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: none;
  color: var(--tc);
}

.llm-trust__icon svg {
  width: 24px;
  height: 24px;
}

.llm-trust__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.llm-trust__title {
  font-size: 15px;
  color: #c7cddd;
}

.llm-trust__text {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 1100px) {
  .llm-awards__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .llm-awards__trust {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .llm-awards__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .llm-award__media {
    height: 120px;
  }

  .llm-award__media img {
    max-height: 120px;
  }
}

@media (max-width: 400px) {
  .llm-awards__grid {
    grid-template-columns: 1fr;
  }
}

/* ---- shared white pill button ----
   Figma prototype (SMART_ANIMATE, ease-out): on hover the pill fills blue, the
   label turns white and slides right, and the arrow badge travels from the right
   edge to the left edge, inverting to a white circle with a blue chevron. */
.llm-btn-white {
  --cta-dur: 0.3s;
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 68px;
  padding: 0 84px 0 30px;
  background: #fff;
  border-radius: 40px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 113, 255, 0.28);
  transition:
    background var(--cta-dur) ease-out,
    box-shadow var(--cta-dur) ease-out;
}

/* The band CTA animates faster in the prototype (0.18s vs 0.3s). */
.llm-btn-white--fast {
  --cta-dur: 0.18s;
}

.llm-btn-white__label {
  color: #0a0a0a;
  transition:
    transform var(--cta-dur) ease-out,
    color var(--cta-dur) ease-out;
}

.llm-btn-white__icon {
  position: absolute;
  top: 50%;
  left: calc(100% - 54px);
  width: 40px;
  height: 40px;
  margin-top: -20px;
  transition: left var(--cta-dur) ease-out;
}

.llm-cta__svg {
  width: 40px;
  height: 40px;
  display: block;
}

.llm-cta__circle {
  fill: #081ec8;
  transition: fill var(--cta-dur) ease-out;
}

.llm-cta__chev {
  stroke: #fff;
  transition: stroke var(--cta-dur) ease-out;
}

.llm-btn-white:hover {
  background: #081ec8;
  box-shadow: 0 14px 46px rgba(0, 113, 255, 0.45);
}

.llm-btn-white:hover .llm-btn-white__label {
  transform: translateX(54px);
  color: #fff;
}

.llm-btn-white:hover .llm-btn-white__icon {
  left: 14px;
}

.llm-btn-white:hover .llm-cta__circle {
  fill: #fff;
}

.llm-btn-white:hover .llm-cta__chev {
  stroke: #081ec8;
}

/* ---- consultation button (split pill) ----
   Prototype: label pill and icon badge swap sides and both invert to black. */
.llm-consult {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 43px;
  padding-right: 51px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.llm-consult__label {
  display: inline-flex;
  align-items: center;
  height: 43px;
  padding: 0 28px;
  border-radius: 999px;
  background: #fff;
  color: #0a0a0a;
  white-space: nowrap;
  transition:
    transform 0.3s ease-out,
    background 0.3s ease-out,
    color 0.3s ease-out;
}

.llm-consult__icon {
  position: absolute;
  top: 0;
  left: calc(100% - 43px);
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 999px;
  background: #fff;
  color: #0a0a0a;
  transition:
    left 0.3s ease-out,
    background 0.3s ease-out,
    color 0.3s ease-out;
}

.llm-consult__icon svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease-out;
}

/* Arrow swings from up-right to straight-right as the halves swap. */
.llm-consult:hover .llm-consult__icon svg {
  transform: rotate(45deg);
}

.llm-consult:hover .llm-consult__label {
  transform: translateX(51px);
  background: #000;
  color: #fff;
}

.llm-consult:hover .llm-consult__icon {
  left: 0;
  background: #000;
  color: #fff;
}

/* ============================================================
   VALUE BAND (CTA)
   ============================================================ */
/* Floor glow, built in CSS to match the Figma artwork: black through the upper
   half, rising into blue at the bottom, brightest toward the two lower corners. */
.llm-band,
.llm-final {
  background:
    radial-gradient(
      72% 46% at 8% 108%,
      rgba(116, 156, 238, 0.55) 0%,
      rgba(60, 100, 210, 0.28) 38%,
      transparent 72%
    ),
    radial-gradient(
      72% 46% at 92% 108%,
      rgba(110, 150, 234, 0.5) 0%,
      rgba(56, 96, 206, 0.26) 38%,
      transparent 72%
    ),
    linear-gradient(
      180deg,
      #000 0%,
      #000 55%,
      #000206 62%,
      #050816 72%,
      #0e1638 80%,
      #131f52 85%,
      #1e3170 90%,
      #263e8c 95%,
      #3a5fb9 100%
    ),
    var(--llm-bg);
}

.llm-band {
  position: relative;
  padding: 84px 0 110px;
  overflow: hidden;
}

.llm-band__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.llm-band__title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 43px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 850px;
}

.llm-band__text {
  margin: 0;
  font-weight: 300;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.55;
  color: #c5c5c5;
  max-width: 1000px;
}

.llm-band__inner .llm-btn-white {
  margin-top: 8px;
}

/* ============================================================
   CTA PANEL (between engagement models and what-you-get)
   ============================================================ */
.llm-cta {
  padding: 30px 0 70px;
}

.llm-cta__inner {
  background: linear-gradient(80deg, #0e111b 0%, #0f3c9b 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.llm-cta__title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 720px;
}

.llm-cta__text {
  margin: 0;
  font-weight: 300;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.55;
  color: #c5c5c5;
  max-width: 640px;
}

.llm-cta__inner .llm-btn-white {
  margin-top: 8px;
}

/* ============================================================
   CAPABILITIES
   ============================================================ */
.llm-caps {
  padding: 40px 0 80px;
}

.llm-caps__head {
  text-align: center;
  max-width: 940px;
  margin: 0 auto 46px;
}

.llm-caps__title {
  margin: 0 0 16px;
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 45px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #fff;
}

.llm-caps__title > span:not(.llm-word) {
  color: #55a0ff;
}

.llm-caps__lead {
  margin: 0 auto;
  max-width: 820px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.llm-caps__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.llm-cap {
  background: #0e0e0e;
  border: 1px solid #1c1c1c;
  border-radius: 6px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.llm-cap:hover {
  transform: translateY(-5px);
  border-color: #2b4a7a;
  background: #101425;
}

/* CTA card — same gradient/border as the FAQ promo, holds the white button */
.llm-cap--cta {
  background: linear-gradient(80deg, #0e111b 0%, #0f3c9b 100%);
  border-color: rgba(255, 255, 255, 0.15);
  justify-content: center;
}

.llm-cap--cta:hover {
  background: linear-gradient(80deg, #0e111b 0%, #0f3c9b 100%);
  border-color: rgba(255, 255, 255, 0.3);
}

.llm-cap--cta .llm-btn-white {
  margin-top: 4px;
  align-self: flex-start;
}

.llm-cap__icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #55a0ff;
}

.llm-cap__icon svg {
  width: 40px;
  height: 40px;
}

.llm-cap__title {
  margin: 0;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.35;
  color: #fff;
}

.llm-cap__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #b8b8b8;
}

.llm-cap__more {
  color: #55a0ff;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.llm-cap__more:hover {
  color: #7ab8ff;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .llm-caps__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .llm-caps__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.llm-proc {
  padding: 60px 0 80px;
}

.llm-proc__head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.llm-proc__eyebrow {
  position: relative;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 12px;
}

.llm-proc__eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: #fff;
}

.llm-proc__title {
  margin: 0;
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  color: #fff;
}

.llm-proc__title > span:not(.llm-word) {
  color: #55a0ff;
}

.llm-proc__lead {
  margin: 0;
  max-width: 780px;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.llm-proc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Vertical rail: a faint full-height track with a blue progress segment that
   moves to whichever step is currently active (positioned by the script). */
/* Figma: track starts 14px below the top of the first dot. */
.llm-proc__rail {
  position: absolute;
  top: 60px;
  bottom: 46px;
  left: 107px;
  width: 2px;
  background: rgba(255, 255, 255, 0.2);
}

/* Figma gradient: solid blue until 68.8%, then blue -> white at the tip. */
.llm-proc__progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 174px;
  background: linear-gradient(180deg, #081ec8 0%, #081ec8 68.8%, #fff 100%);
  transition: transform 0.45s ease;
}

.llm-proc__row {
  position: relative;
  display: grid;
  grid-template-columns: 203px 413px 1fr;
  align-items: start;
  padding: 0 0 110px;
  opacity: 0.28;
  transition: opacity 0.45s ease;
}

.llm-proc__row:last-child {
  padding-bottom: 0;
}

.llm-proc__row.is-active {
  opacity: 1;
}

/* Dot sits on the rail, level with the number chip. */
.llm-proc__dot {
  position: absolute;
  left: 99px;
  top: 46px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #4a4a4a;
  transition:
    background 0.45s ease,
    box-shadow 0.45s ease;
}

.llm-proc__row.is-active .llm-proc__dot {
  background: #081ec8;
  box-shadow: 0 0 0 6px rgba(8, 30, 200, 0.18);
}

/* The dot is absolutely positioned, so it claims no grid track — place the two
   real cells explicitly or they shift a column to the left. */
.llm-proc__left {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  padding-top: 46px;
}

.llm-proc__num {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(180deg, #081ec8, #000e7a);
  font-weight: 500;
  font-size: 35px;
  line-height: 1;
  color: #fff;
  margin-bottom: 11px;
}

.llm-proc__step-title {
  margin: 0 0 11px;
  font-weight: 400;
  font-size: 27px;
  line-height: 1.2;
  color: #fff;
}

.llm-proc__desc {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  color: #fff;
  opacity: 0.5;
}

.llm-proc__media {
  grid-column: 3;
  display: flex;
  justify-content: flex-start;
}

.llm-proc__media img {
  width: 100%;
  max-width: 506px;
  height: auto;
}

@media (max-width: 1180px) {
  .llm-proc__row {
    grid-template-columns: 120px minmax(0, 380px) 1fr;
  }

  .llm-proc__rail {
    left: 55px;
  }

  .llm-proc__dot {
    left: 47px;
  }
}

@media (max-width: 860px) {
  .llm-proc__row {
    grid-template-columns: 56px 1fr;
    padding-bottom: 64px;
  }

  .llm-proc__left {
    grid-column: 2;
  }

  .llm-proc__rail {
    left: 27px;
  }

  .llm-proc__dot {
    left: 19px;
    top: 24px;
  }

  .llm-proc__left {
    padding-top: 16px;
  }

  .llm-proc__media {
    grid-column: 2;
    grid-row: 2;
    justify-content: flex-start;
    margin-top: 18px;
  }
}

/* ============================================================
   OUR EXPERTISE / MODEL TILES
   ============================================================ */
.llm-models {
  padding: 60px 0 70px;
}

.llm-models__head {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.llm-models__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  color: #fff;
}

.llm-models__title > span:not(.llm-word) {
  color: #3b8bff;
}

.llm-models__lead {
  margin: 0;
  max-width: 800px;
  font-size: 16px;
  line-height: 1.55;
  color: #b9c0d2;
}

.llm-models__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
}

/* Card, glow and label are all drawn here; the only asset is the logo itself. */
.llm-model {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 22px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.012)
  );
  overflow: hidden;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

/* Soft halo tinted to the logo, sitting behind it. */
.llm-model::before {
  content: "";
  position: absolute;
  top: -34%;
  left: 50%;
  width: 132%;
  aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--glow) 26%, transparent) 0%,
    transparent 62%
  );
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.llm-model__icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
}

.llm-model__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.llm-model__name {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}

.llm-model:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--glow) 45%, rgba(255, 255, 255, 0.07));
}

.llm-model:hover::before {
  opacity: 1;
}

@media (max-width: 1100px) {
  .llm-models__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 560px) {
  .llm-models__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ============================================================
   ENTERPRISE SOLUTIONS LIST
   ============================================================ */
.llm-ent {
  position: relative;
  padding: 90px 0 100px;
  background:
    radial-gradient(60% 50% at 4% 4%, rgba(120, 40, 90, 0.16), transparent 60%),
    radial-gradient(
      70% 60% at 96% 4%,
      rgba(40, 70, 190, 0.16),
      transparent 60%
    ),
    var(--llm-bg);
  overflow: hidden;
}

.llm-ent__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 30px;
}

.llm-ent__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(34px, 5vw, 70px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}

.llm-ent__title > span:not(.llm-word) {
  font-style: italic;
  color: #3b8bff;
}

.llm-ent__lead {
  margin: 20px 0 0;
  max-width: 480px;
  font-size: 16px;
  line-height: 1.45;
  color: #b9c0d2;
  justify-self: end;
}

.llm-ent__pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 15px;
  color: #e6eaf5;
  margin-bottom: 48px;
}

.llm-ent__pill svg {
  width: 16px;
  height: 16px;
  color: #3b8bff;
}

.llm-ent__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.llm-ent__row {
  display: grid;
  grid-template-columns: 174px 1fr 405px;
  align-items: center;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  cursor: default;
  outline: none;
  transition: padding-left 0.18s ease-out;
}

.llm-ent__row:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.llm-ent__num {
  font-size: 20px;
  letter-spacing: 0.02em;
  color: #5c6478;
  transition: color 0.35s ease;
}

.llm-ent__name {
  font-size: clamp(20px, 2.1vw, 28px);
  letter-spacing: 0.01em;
  color: #6f7789;
  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

/* Collapsed by default; 0fr -> 1fr expands to the content's own height. */
.llm-ent__detail {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.18s ease-out,
    opacity 0.18s ease-out;
}

/* Figma: the copy sits at the top of a 272px block and the robot is pinned to
   its bottom-right, mirrored (scaleX -1), overlapping the last line slightly. */
/* The collapsing element must be able to reach zero height, so the fixed
   272px block lives one level deeper. */
.llm-ent__detail-inner {
  overflow: hidden;
  min-height: 0;
}

.llm-ent__detail-box {
  position: relative;
  min-height: 272px;
  padding-top: 50px;
}

.llm-ent__desc {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 375px;
  font-size: 16px;
  line-height: 1.55;
  color: #ededed;
}

.llm-ent__images {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 170px;
  height: auto;
}

.llm-ent__row:hover,
.llm-ent__row:focus-visible {
  padding-left: 14px;
}

.llm-ent__row:hover .llm-ent__num,
.llm-ent__row:focus-visible .llm-ent__num {
  color: #9ca3af;
}

.llm-ent__row:hover .llm-ent__name,
.llm-ent__row:focus-visible .llm-ent__name {
  color: #fff;
}

.llm-ent__row:hover .llm-ent__detail,
.llm-ent__row:focus-visible .llm-ent__detail {
  grid-template-rows: 1fr;
  opacity: 1;
}

@media (max-width: 860px) {
  .llm-ent__head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .llm-ent__lead {
    justify-self: start;
  }

  .llm-ent__row {
    grid-template-columns: 60px 1fr;
    gap: 14px;
    padding: 22px 0;
  }

  .llm-ent__detail {
    grid-column: 1 / -1;
  }

  .llm-ent__images {
    width: 110px;
  }
}

/* ---- shared outlined badge pill (engagement / what-you-get / benefits) ---- */
.llm-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 26px;
  border: 1px solid #029eff;
  border-radius: 124px;
  background: #040817;
  font-size: 15.7px;
  letter-spacing: 0.03em;
  color: #fff;
}

.llm-pill svg {
  width: 26px;
  height: 26px;
  color: #2f8bff;
}

/* ============================================================
   ENGAGEMENT MODELS
   ============================================================ */
.llm-engage {
  position: relative;
  padding: 90px 0 80px;
  background:
    radial-gradient(
      70% 60% at 50% 0%,
      rgba(30, 60, 160, 0.18),
      transparent 60%
    ),
    var(--llm-bg);
}

.llm-engage__head,
.llm-get__head {
  text-align: center;
  max-width: 1020px;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.llm-engage__title,
.llm-get__title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #fff;
}

.llm-engage__title > span:not(.llm-word),
.llm-get__title > span:not(.llm-word) {
  color: #55a0fe;
}

.llm-engage__lead,
.llm-get__lead {
  margin: 0;
  max-width: 790px;
  font-size: 15.7px;
  line-height: 1.45;
  color: #a3a3a3;
}

.llm-get__lead {
  max-width: 1060px;
}

.llm-engage__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.llm-emodel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 26px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.012)
  );
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.llm-emodel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(
    110% 70% at 50% 0%,
    color-mix(in srgb, var(--c) 14%, transparent),
    transparent 62%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.llm-emodel:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--c) 45%, rgba(255, 255, 255, 0.08));
}

.llm-emodel:hover::before {
  opacity: 1;
}

.llm-emodel__icon {
  display: inline-grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--c) 55%, transparent);
  background: color-mix(in srgb, var(--c) 10%, transparent);
  color: var(--c);
  margin-bottom: 20px;
}

.llm-emodel__icon svg {
  width: 34px;
  height: 34px;
}

.llm-emodel__title {
  margin: 0 0 12px;
  font-weight: 600;
  font-size: 24px;
  color: #fff;
}

.llm-emodel__text {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.5;
  color: #b6bccb;
}

.llm-emodel__rule {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 18px;
}

.llm-emodel__list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  text-align: left;
}

.llm-emodel__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15.5px;
  line-height: 1.35;
  color: #dfe3ee;
}

.llm-emodel__list svg {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 2px;
  color: var(--c);
}

.llm-emodel__cta {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--c);
  text-decoration: none;
  transition: gap 0.25s ease;
}

.llm-emodel__cta svg {
  width: 18px;
  height: 18px;
}

.llm-emodel__cta:hover {
  gap: 16px;
  color: var(--c);
}

@media (max-width: 1080px) {
  .llm-engage__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .llm-engage__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   WHAT YOU GET
   ============================================================ */
.llm-get {
  padding: 80px 0 90px;
}

.llm-get__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.llm-getcard {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.llm-getcard:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--c) 40%, rgba(255, 255, 255, 0.08));
}

.llm-getcard__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.llm-getcard__icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: none;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--c) 45%, transparent);
  background: color-mix(in srgb, var(--c) 10%, transparent);
  color: var(--c);
}

.llm-getcard__icon svg {
  width: 28px;
  height: 28px;
}

.llm-getcard__title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.25;
  color: #fff;
}

.llm-getcard__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #c2c8d6;
}

@media (max-width: 860px) {
  .llm-get__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ============================================================
   INDUSTRIES CAROUSEL
   ============================================================ */
.llm-ind {
  padding: 70px 0 90px;
  overflow: hidden;
}

.llm-ind__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 46px;
}

.llm-ind__eyebrow {
  display: inline-block;
  position: relative;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: #3b8bff;
  padding-bottom: 12px;
  margin: 0 0 16px;
}

.llm-ind__eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 33px;
  height: 2px;
  background: #3b8bff;
}

.llm-ind__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 47px);
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 520px;
}

.llm-ind__title > span:not(.llm-word) {
  color: #3b8bff;
}

.llm-ind__lead {
  margin: 18px 0 0;
  max-width: 690px;
  font-size: 19px;
  line-height: 1.45;
  color: #e3e7f0;
  justify-self: end;
}

.llm-ind__rail {
  /* No scroll-snap: it fights the continuous auto-scroll. */
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* Stop scroll re-anchoring on image load, which fights the drag */
  overflow-anchor: none;
  /* overflow-x also makes overflow-y `auto`, so the outlined numbers — whose
       glyphs overflow their 66px line box — need headroom or they get clipped.
       The negative margin keeps the section's spacing unchanged. */
  padding: 26px 0 10px;
  margin-top: -26px;
  /* Entrance: the rail slides up into place when the section arrives. */
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.llm-ind__rail.is-inview {
  opacity: 1;
  transform: none;
}

.llm-ind__rail::-webkit-scrollbar {
  display: none;
}

.llm-ind__rail {
  cursor: grab;
}

/* Mouse click-drag in progress */
.llm-ind__rail.is-grabbing {
  cursor: grabbing;
  user-select: none;
}

.llm-ind__rail.is-grabbing img {
  pointer-events: none;
}

.llm-ind__track {
  list-style: none;
  margin: 0;
  padding: 0 max(20px, calc((100vw - 1240px) / 2));
  display: flex;
  gap: 23px;
}

.llm-indcard {
  position: relative;
  flex: none;
  width: 428px;
  /* Room for the number, which straddles the top edge of the card. */
  padding-top: 33px;
}

/* Figma: 66px-tall text box centred on the card's top edge, 47px in from the
   card's left, hollow with a 3px white stroke. */
.llm-indcard__num {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 47px;
  height: 66px;
  line-height: 66px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 94.29px;
  letter-spacing: -3.81px;
  color: transparent;
  -webkit-text-stroke: 3px #fff;
  pointer-events: none;
}

.llm-indcard__media {
  position: relative;
  height: 428px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 5px 28px rgba(0, 0, 0, 0.06);
}

.llm-indcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.llm-indcard:hover .llm-indcard__media img {
  transform: scale(1.05);
}

.llm-indcard__shade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), #000 74%);
  filter: blur(3px);
  pointer-events: none;
}

.llm-indcard__label {
  position: absolute;
  left: 34px;
  bottom: 30px;
  font-weight: 700;
  font-size: 50px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}

@media (max-width: 860px) {
  .llm-ind__head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .llm-ind__lead {
    justify-self: start;
    font-size: 16px;
  }

  .llm-indcard {
    width: 300px;
    padding-top: 23px;
  }

  .llm-indcard__media {
    height: 300px;
  }

  .llm-indcard__label {
    font-size: 34px;
    left: 24px;
    bottom: 22px;
  }

  .llm-indcard__num {
    font-size: 66px;
    height: 46px;
    line-height: 46px;
    left: 30px;
    letter-spacing: -2.6px;
    -webkit-text-stroke-width: 2.2px;
  }
}

/* ============================================================
   BENEFITS
   ============================================================ */
.llm-ben {
  padding: 70px 0 90px;
}

.llm-ben__head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.llm-ben__title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #fff;
}

.llm-ben__title > span:not(.llm-word) {
  color: #3b8bff;
}

.llm-ben__lead {
  margin: 0;
  max-width: 780px;
  font-size: 16px;
  line-height: 1.5;
  color: #a9b0c0;
}

.llm-ben__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.llm-bencard {
  padding: 28px 26px 34px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.025),
    rgba(255, 255, 255, 0.008)
  );
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.llm-bencard:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 139, 255, 0.35);
}

.llm-bencard__icon {
  display: inline-grid;
  place-items: center;
  width: 60px;
  height: 60px;
  color: #fff;
  margin-bottom: 18px;
}

.llm-bencard__icon svg {
  width: 42px;
  height: 42px;
}

.llm-bencard__title {
  margin: 0 0 14px;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.3;
  color: #fff;
}

.llm-bencard__text {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: #a9b0c0;
}

@media (max-width: 1000px) {
  .llm-ben__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .llm-ben__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CUSTOMER SUCCESS STORY
   ============================================================ */
.llm-cs {
  padding: 70px 0 80px;
}

.llm-cs__head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.llm-cs__pill {
  display: inline-flex;
  align-items: center;
  padding: 11px 30px;
  border: 1px solid #2f7de0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3b8bff;
}

.llm-cs__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}

.llm-cs__title > span:not(.llm-word) {
  color: #3b8bff;
}

.llm-cs__lead {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: #d3d8e4;
}

.llm-cs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.llm-case {
  display: grid;
  grid-template-columns: 391px 1fr 400px;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: #080b18;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.llm-case:hover {
  border-color: color-mix(in srgb, var(--c) 40%, rgba(255, 255, 255, 0.08));
}

.llm-case__media {
  position: relative;
}

.llm-case__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Number chip over the artwork, tinted to the case's accent. */
.llm-case__num {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  display: grid;
  place-items: center;
  min-width: 56px;
  height: 46px;
  padding: 0 10px;
  border: 1.5px solid var(--c);
  border-radius: 10px;
  background: rgba(6, 10, 24, 0.7);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: var(--c);
}

.llm-case__body {
  padding: 34px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.llm-case__title {
  margin: 0 0 16px;
  font-weight: 600;
  font-size: clamp(20px, 1.9vw, 25px);
  line-height: 1.3;
  color: #fff;
}

.llm-case__client {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  font-weight: 600;
  font-size: 17px;
  color: var(--c);
}

.llm-case__client svg {
  width: 20px;
  height: 20px;
  flex: none;
}

.llm-case__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.62;
  color: #c3c9d7;
}

.llm-case__results {
  padding: 34px 30px;
}

.llm-case__results-title {
  margin: 0 0 18px;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}

.llm-case__results ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.llm-case__results li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.llm-case__results li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.llm-case__results li:first-child {
  padding-top: 0;
}

.llm-case__icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 50%;
  background: color-mix(in srgb, var(--c) 14%, transparent);
  color: var(--c);
}

.llm-case__icon svg {
  width: 26px;
  height: 26px;
}

.llm-case__res-text {
  font-size: 16px;
  line-height: 1.4;
  color: #c8cedb;
}

.llm-case__res-text b {
  font-weight: 700;
  font-size: 21px;
  color: var(--c);
}

@media (max-width: 1150px) {
  .llm-case {
    grid-template-columns: 300px 1fr;
  }

  .llm-case__results {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .llm-case__body {
    border-right: 0;
  }
}

@media (max-width: 700px) {
  .llm-case {
    grid-template-columns: 1fr;
  }

  .llm-case__media img {
    height: 240px;
  }

  .llm-case__body,
  .llm-case__results {
    padding: 26px 22px;
  }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.llm-final {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
}

.llm-final__inner {
  max-width: 1060px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.llm-final__title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #fff;
  max-width: 900px;
}

.llm-final__text {
  margin: 0;
  max-width: 980px;
  font-size: 16.5px;
  line-height: 1.55;
  color: #cdd3e2;
}

.llm-final__inner .llm-btn-white {
  margin-top: 14px;
}

/* ============================================================
   FAQ
   ============================================================ */
.llm-faq {
  padding: 70px 0 80px;
  background: #0f0f0f;
}

.llm-faq__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: start;
}

/* The heading + promo track the list while it scrolls. */
.llm-faq__aside {
  position: sticky;
  top: 110px;
}

.llm-faq__title {
  margin: 0 0 26px;
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.15;
  color: #fff;
}

/* Figma renders the whole heading in blue (#3E91FB -> #318AFB is effectively a
   flat colour). Kept as a solid fill: `background-clip: text` on the heading
   fights the per-word reveal spans, which are transformed inline-blocks. */
.llm-faq__title,
.llm-faq__title > span:not(.llm-word) {
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: #3b8dfb;
}

/* Stops sampled straight off the Figma render: near-black navy on the left
   ramping to ~rgb(15,60,155) at the right, tilted slightly toward the top.
   `padding-box` keeps the gradient from painting under the translucent border —
   otherwise its blue start bleeds through as a bright line down the left edge. */
.llm-faq__promo {
  background: linear-gradient(80deg, #0e111b 0%, #0f3c9b 100%) padding-box;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 34px 30px;
}

.llm-faq__promo-title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.llm-faq__promo-text {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--llm-muted);
}

.llm-faq__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Figma: closed rgba(221,209,255,.06), open rgba(84,80,95,.26), 26px radius,
   no border on either state. */
.llm-faq__item {
  border: 0;
  border-radius: 26px;
  background: rgba(221, 209, 255, 0.06);
  overflow: hidden;
  transition: background 0.25s ease;
}

.llm-faq__item[open] {
  background: rgba(84, 80, 95, 0.26);
}

.llm-faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  font-weight: 500;
  font-size: 17px;
  color: #fff;
}

.llm-faq__q::-webkit-details-marker {
  display: none;
}

.llm-faq__mark {
  position: relative;
  flex: none;
  width: 22px;
  height: 22px;
}

.llm-faq__mark::before,
.llm-faq__mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #55a0ff;
  transform: translate(-50%, -50%);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.llm-faq__mark::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.llm-faq__item[open] .llm-faq__mark::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0);
}

.llm-faq__a-wrap {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    height 0.3s ease,
    opacity 0.3s ease;
}

.llm-faq__item[open] .llm-faq__a-wrap {
  height: auto;
  opacity: 1;
}

.llm-faq__a {
  margin: 0;
  padding: 0 22px 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--llm-muted);
}

@media (max-width: 900px) {
  .llm-faq__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .llm-faq__aside {
    position: static;
    top: auto;
  }
}

@media (max-width: 560px) {
}

/* ============================================================
   SCROLL REVEAL (shared) — hidden pre-paint under .llm-anim,
   revealed when the element enters the viewport (.is-inview)
   ============================================================ */
/* Blocks (cards, text, panels) rise + fade in. */
.llm-anim .llm-hero__subtitle,
.llm-anim .llm-hero__cta,
.llm-anim .llm-badge,
.llm-anim .llm-hero__proof,
.llm-anim .llm-stat,
.llm-anim .llm-eyebrow,
.llm-anim .llm-awards__text,
.llm-anim .llm-award,
.llm-anim .llm-trust,
.llm-anim .llm-band__text,
.llm-anim .llm-band .llm-btn-white,
.llm-anim .llm-caps__lead,
.llm-anim .llm-cap,
.llm-anim .llm-proc__eyebrow,
.llm-anim .llm-proc__lead,
.llm-anim .llm-models__lead,
.llm-anim .llm-model,
.llm-anim .llm-ent__lead,
.llm-anim .llm-ent__pill,
.llm-anim .llm-ent__row,
.llm-anim .llm-pill,
.llm-anim .llm-engage__lead,
.llm-anim .llm-emodel,
.llm-anim .llm-get__lead,
.llm-anim .llm-getcard,
.llm-anim .llm-ind__eyebrow,
.llm-anim .llm-ind__lead,
.llm-anim .llm-ben__lead,
.llm-anim .llm-bencard,
.llm-anim .llm-cs__pill,
.llm-anim .llm-cs__lead,
.llm-anim .llm-case,
.llm-anim .llm-final__text,
.llm-anim .llm-final .llm-btn-white,
.llm-anim .llm-faq__item,
.llm-anim .llm-faq__promo {
  opacity: 0;
  transform: translateY(24px);
}

.llm-anim .is-inview {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

/* Respect reduced-motion: show everything in its resting state, no travel. */
@media (prefers-reduced-motion: reduce) {
  .llm-anim .llm-page *,
  .llm-page * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .llm-anim .llm-page [class] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Titles reveal word-by-word, left to right. */
.llm-anim .llm-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
}

.llm-anim .is-inview .llm-word,
.llm-anim .llm-word.is-inview {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.5s ease var(--wd, 0ms),
    transform 0.5s ease var(--wd, 0ms);
}

/* ============================================================
   MOBILE FIXES (320px)
   ============================================================ */
@media (max-width: 480px) {
  /* 1. Smaller Hero CTA */
  .llm-btn-white,
  .llm-hero__cta {
    height: 52px;
    padding: 0 64px 0 20px;
    font-size: 15px;
  }

  .llm-btn-white__icon {
    width: 34px;
    height: 34px;
    left: calc(100% - 46px);
    margin-top: -17px;
  }

  .llm-cta__svg {
    width: 34px;
    height: 34px;
  }

  /* 2. Responsive Hero Logos */
  .llm-hero__proof {
    width: 100%;
  }

  .llm-hero__logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 22px;
    padding: 0;
  }

  .llm-hero__logos li {
    font-size: 16px;
  }

  /* 3. Awards Trust Overflow */
  .llm-awards__trust {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 18px;
  }

  .llm-trust {
    justify-content: flex-start;
  }

  /* 4. Reduce Band + Final Padding */
  .llm-band,
  .llm-final {
    padding: 50px 0;
  }

  /* 5. Reduce Slider Height */
  .swiper,
  .swiper-container,
  .llm-slider {
    height: auto;
  }

  .swiper-slide img,
  .llm-slider img {
    max-height: 220px;
    object-fit: cover;
  }

  /* 6. FAQ */
  .llm-faq {
    overflow-x: hidden;
  }

  .llm-faq__sticky,
  .llm-faq .sticky,
  .llm-faq [style*="position: sticky"] {
    position: static !important;
    top: auto !important;
  }
}

@media (max-width: 560px) {
  .llm-faq__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .llm-faq__layout > * {
    min-width: 0;
  }

  .llm-faq__aside {
    position: static;
    top: auto;
    width: 100%;
  }

  .llm-faq__promo,
  .llm-faq__list,
  .llm-faq__item {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }

  .llm-faq__q {
    padding: 18px 16px;
    font-size: 16px;
  }

  .llm-faq__a {
    padding: 0 16px 18px;
  }

  .llm-consult {
    width: 100%;
    max-width: 100%;
  }

  .llm-consult__label {
    white-space: normal;
    text-align: center;
    font-size: 12px;
    padding: 0 18px;
  }
}
