@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

/* Noto */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

/* CAL SANS */
@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&display=swap');

/* google sans */
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

/* PT Serif */
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');




@layer base;

@layer base {
  /* ============================================================
   CoreCode Synthetic — combined stylesheet for all pages
   Shared base rules + a few page-scoped overrides (body.page-*)
   for rules that legitimately differ between pages.
   ============================================================ */




  :root {
    --base: #FAFAFC;
    --base-alt: #F3F4FA;
    --ink: #000;
    --ink-soft: #04060B;
    --violet: #006FD3;
    --violet-deep: #006FD3;
    --teal: #006FD3;
    --lavender: #006FD3;
    --card: #EEF0FA;
    --line: #E3E5F1;
    --text-1: #0B0F1A;
    --text-2: #4A4F63;
    --text-3: #8A8FA3;
    --on-dark-1: #F5F6FC;
    --on-dark-2: #A9AEC6;
    --font-display: "Outfit", sans-serif;
    /* --font-display: "Noto Serif", serif; */
    /* --font-display: "Cal Sans", sans-serif; */
    /* --font-display:"Google Sans", sans-serif; */
    /* --font-display: "PT Serif", serif; */
    --font-body: "Jost", sans-serif;
    ;

  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
    overflow-x: clip;
  }

  body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--base);
    color: var(--text-1);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
    max-width: 100%;
  }

  h1,
  h2,
  h3,
  h4 {
    font-family: var(--font-display);
    margin: 0;
    letter-spacing: -0.02em;
    letter-spacing: 0.5px;
  }

  p {
    margin: 0;
  }

  img {
    max-width: 100%;
  }

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

  a:hover {
    color: var(--violet-deep);
  }

  a:focus-visible,
  button:focus-visible,
  input:focus-visible {
    outline: 2px solid var(--violet);
    outline-offset: 3px;
    border-radius: 6px;
  }

  /* ===== Keyframes ===== */
  @keyframes glowPulse {

    0%,
    100% {
      opacity: .55
    }

    50% {
      opacity: .9
    }
  }

  @keyframes dotBounce {

    0%,
    80%,
    100% {
      transform: translateY(0);
      opacity: .35
    }

    40% {
      transform: translateY(-5px);
      opacity: 1
    }
  }

  @keyframes dotBounce2 {

    0%,
    80%,
    100% {
      transform: translateY(0);
      opacity: .35
    }

    40% {
      transform: translateY(-4px);
      opacity: 1
    }
  }

  @keyframes pulseDot {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 212, 184, .5);
    }

    70% {
      box-shadow: 0 0 0 8px rgba(0, 212, 184, 0);
    }

    100% {
      box-shadow: 0 0 0 0 rgba(0, 212, 184, 0);
    }
  }

  @keyframes marqueeScroll {
    from {
      transform: translateX(0)
    }

    to {
      transform: translateX(-50%)
    }
  }

  /* ===== Bits ===== */
  .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--violet);
    animation: dotBounce 1.3s infinite ease-in-out;
  }

  .navlink {
    transition: color .2s ease;
  }

  .navlink:hover {
    color: #fff;
  }

  .footlink {
    transition: color .2s ease;
  }

  .footlink:hover {
    color: #fff;
  }

  /* ===== Grid helpers ===== */
  .g2 {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .g3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .g4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .g5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .gfoot {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  }

  .bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
  }

  /* ===== Header / burger ===== */
  .header-inner {
    position: relative;
  }

  .nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex: none;
  }

  .nav-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
  }

  .nav-burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-burger.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ===== Contact form ===== */
  .icon-tile {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(91, 95, 239, .12), rgba(0, 212, 184, .12));
    color: var(--violet-deep);
    margin-bottom: 20px;
    flex: none;
  }

  .field {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .field label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-1);
  }

  .field input,
  .field textarea,
  .field select {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 14.5px;
    background: var(--base-alt);
  }

  .field input:focus,
  .field textarea:focus,
  .field select:focus {
    outline: none;
    border-color: var(--violet);
    background: #fff;
  }

  /* Responsive rules for every breakpoint live in ONE consolidated
   section at the end of this file (search: "RESPONSIVE — all breakpoints"). */

  /* --- CoreCode Agent character (image-based, recurring) --- */
  .cc-fig {
    position: relative;
    display: inline-block;
    max-width: 100%;
  }

  .cc-fig>img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    /* filter:drop-shadow(0 24px 40px rgba(11,15,26,.28)); */
    filter: drop-shadow(0 34px 60px rgba(90, 150, 255, .28)) drop-shadow(0 14px 34px rgba(0, 0, 0, .65));
  }

  .cc-fig.on-dark>img {
    /* filter:drop-shadow(0 24px 46px rgba(0,0,0,.55)); */
    filter: drop-shadow(0 34px 60px rgba(90, 150, 255, .28)) drop-shadow(0 14px 34px rgba(0, 0, 0, .65));

  }

  .cc-glow {
    position: absolute;
    z-index: 0;
    left: 8%;
    right: 8%;
    top: 12%;
    bottom: 2%;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(91, 95, 239, .5), rgba(0, 0, 0, .28) 55%, transparent 78%);
    filter: blur(26px);
    opacity: .6;
    animation: glowPulse 6s ease-in-out infinite;
  }

  .cc-chip {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 16px;
    border-radius: 14px;
    background: var(--ink-soft, #151B2C);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 16px 32px -14px rgba(0, 0, 0, .55);
  }

  .cc-chip .dot {
    position: relative;
    display: inline-flex;
    width: 10px;
    height: 10px;
    flex: none;
  }

  .cc-chip .dot i {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--teal);
    opacity: .55;
    animation: glowPulse 2s ease-in-out infinite;
  }

  .cc-chip .dot b {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--teal);
    display: block;
  }

  .cc-chip .t1 {
    font-size: 12.5px;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-body);
    margin-right: 4px;
  }

  .cc-chip .t2 {
    font-size: 11px;
    color: var(--on-dark-2);
    margin-top: 2px;
    font-family: var(--font-body);
  }

  /* --- Timeline connector line animation (Exploration -> Expanding) --- */
  .timeline-track {
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    overflow: hidden;
    z-index: 0;
  }

  .timeline-track .track-base {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--violet), var(--teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.3s cubic-bezier(.4, 0, .2, 1);
  }

  .timeline-track.in-view .track-base {
    transform: scaleX(1);
  }

  .timeline-track .track-glow {
    position: absolute;
    top: 0;
    left: -10%;
    width: 14%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .95), transparent);
    opacity: 0;
    filter: blur(1px);
  }

  .timeline-track.in-view .track-glow {
    opacity: 1;
    animation: timelineSweep 2.6s 1.3s ease-in-out infinite;
  }

  @keyframes timelineSweep {
    0% {
      left: -10%;
    }

    100% {
      left: 106%;
    }
  }

  /* ============================================================
   Page-scoped overrides — preserve each page's original look
   ============================================================ */
  /* index.html: muted default navlink colour + glow without radial fill */
  body.page-index .navlink {
    color: var(--on-dark-2);
  }

  body.page-index .cc-glow {
    background: none;
  }

  /* Contact.html: smaller teal icon tiles without bottom margin */
  body.page-contact .icon-tile {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(91, 95, 239, .22), rgba(0, 212, 184, .18));
    color: var(--teal);
    margin-bottom: 0;
  }
}

/* ============================================================
   Extracted inline styles -> classes (unlayered so they win
   over @layer base normal rules, mirroring inline-style behaviour;
   the !important responsive rules in @layer base still override them).
   ============================================================ */
.st1 {
  background: var(--base);
}

.st2 {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ink);
}

.st3 {
  max-width: 1310px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 20px;
}

.st4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.st5 {
  width: 190px;
  max-width: 100%;
}

.st6 {
  display: flex;
  gap: 26px;
  font-size: 14px;
  font-weight: 500;
  color: var(--on-dark-2);
  white-space: nowrap;
}

.st7 {
  color: #fff;
  font-weight: 600;
}

.st8 {
  display: flex;
  gap: 10px;
  flex: none;
}

.st9 {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
}

.st10 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--violet), var(--teal));
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
}

.st11 {
  width: 14px;
  height: 14px;
}

.st12 {
  position: relative;
  padding: 90px 40px 70px;
  background: var(--ink);
  overflow: hidden;
}

.st13 {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 48px;
  align-items: center;
}

.st14 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--on-dark-2);
  margin-bottom: 22px;
  font-weight: 500;
}

.st15 {
  color: var(--teal);
  font-weight: 600;
}

.st16 {
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.1;
  color: #fff;
}

.st17 {
  background: linear-gradient(135deg, var(--teal), var(--lavender));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.st18 {
  max-width: 500px;
  margin-top: 20px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--on-dark-2);
}

.st19 {
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, .5);
}

.st20 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 100px;
  background: rgba(0, 212, 184, .14);
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 20px;
}

.st21 {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulseDot 2s infinite;
}

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

.st23 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.st24 {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.st25 {
  font-size: 13.5px;
  color: #fff;
  font-weight: 600;
}

.st26 {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--violet);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.st27 {
  color: var(--on-dark-2);
  font-weight: 500;
}

.st28 {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: var(--on-dark-2);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.st29 {
  font-size: 13.5px;
  color: var(--on-dark-2);
  font-weight: 600;
}

.st30 {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.st31 {
  font-size: 12.5px;
  color: var(--on-dark-2);
}

.st32 {
  padding: 6px 14px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--violet), var(--teal));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.st33 {
  background: var(--base);
  padding: 80px 40px 0;
}

.st34 {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(180deg, #fff, var(--card));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 56px;
}

.st35 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(0, 212, 184, .12);
  color: #048c78;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
  margin-bottom: 22px;
}

.st36 {
  font-size: clamp(24px, 3vw, 32px);
  max-width: 600px;
  line-height: 1.2;
}

.st37 {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-2);
  max-width: 660px;
}

.st38 {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-2);
  max-width: 660px;
}

.st39 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 13px 26px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--violet), var(--teal));
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
}

.st40 {
  width: 16px;
  height: 16px;
}

.st41 {
  background: var(--base-alt);
  padding: 100px 40px;
  margin-top: 80px;
}

.st42 {
  max-width: 1280px;
  margin: 0 auto;
}

.st43 {
  max-width: 600px;
  margin: 0 auto 56px;
  text-align: center;
}

.st44 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--violet-deep);
  margin-bottom: 18px;
}

.st45 {
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.15;
}

.st46 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.st47 {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
}

.st358 .st48 {
    width: 16px;
    height: 16px;
    fill: #8a8fa3;
}
.st48 {
  width: 22px;
  height: 22px;
}

.st49 {
  font-size: 19px;
  margin-bottom: 10px;
}

.st50 {
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.65;
}

.st51 {
  background: var(--ink-soft);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.st52 {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.st53 {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

.st54 {
  max-width: 240px;
}

.st55 {
  bottom: 14px;
  left: -12px;
}

.st56 {
  font-size: clamp(26px, 3.4vw, 36px);
  color: #fff;
  line-height: 1.2;
}

.st57 {
  color: var(--on-dark-2);
  font-size: 15px;
  margin: 18px auto 34px;
  max-width: 440px;
}

.st58 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--violet), var(--teal));
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
}

.st59 {
  background: var(--ink);
  color: var(--on-dark-2);
  padding: 80px 40px 32px;
}

.st60 {
  display: grid;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.st61 {
  width: 300px;
  max-width: 100%;
  margin-bottom: 20px;
}

.st62 {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.st63 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 18px;
  font-weight: 600;
}

.st64 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.st65 {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 13.5px;
}

.st66 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 13.5px;
  flex-wrap: wrap;
  gap: 16px;
}

.st67 {
  display: flex;
  gap: 20px;
}

.st68 {
  height: 16px;
}

.st69 {
  position: relative;
  padding: 80px 40px 50px;
  background: var(--ink);
  overflow: hidden;
}

.st70 {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.st71 {
  flex: 1;
  min-width: 260px;
}

.st72 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--on-dark-2);
  margin-bottom: 20px;
  font-weight: 500;
}

.st73 {
  font-size: clamp(30px, 4vw, 44px);
  color: #fff;
}

.st74 {
  max-width: 560px;
  margin-top: 16px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--on-dark-2);
}

.st75 {
  flex: none;
}

.st76 {
  max-width: 190px;
}

.st77 {
  bottom: 5px;
  left: -10px;
}

.st78 {
  background: var(--base);
  padding: 60px 40px 100px;
}

.st79 {
  max-width: 1280px;
  margin: 0 auto;
  /* background: var(--card); */
  border-radius: 20px;
  padding: 40px 0;
}

.st80 {
  color: var(--text-2);
  line-height: 1.8;
  font-size: 15.5px;
}

.st81 {
  color: var(--text-2);
  line-height: 1.8;
  font-size: 15.5px;
  margin-top: 14px;
}

.st82 {
  color: var(--violet-deep);
  font-weight: 600;
}

.pp-h2 {
  font-size: 22px;
  color: var(--ink);
  margin: 34px 0 12px;
  font-weight: 700;
}

.pp-h2:first-child {
  margin-top: 0;
}

.pp-lead {
  color: var(--text-1);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 6px;
}

.pp-closing {
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--violet-deep);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}

.st83 {
  position: relative;
  padding: 90px 40px 60px;
  background: var(--ink);
  overflow: hidden;
}

.st84 {
  font-size: clamp(32px, 4.4vw, 48px);
  line-height: 1.1;
  color: #fff;
}

.st85 {
  max-width: 480px;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--on-dark-2);
}

.st86 {
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, .5);
}

.st87 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.st88 {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex: none;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  background: #0C1322;
  display: block;
}

.st89 {
  width: 230%;
  height: auto;
  display: block;
  margin: -6% 0 0 -66%;
}

.st90 {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.st91 {
  font-size: 11px;
  color: var(--on-dark-2);
}

.st92 {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.st93 {
  align-self: flex-end;
  max-width: 75%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  padding: 10px 13px;
  border-radius: 12px 12px 4px 12px;
  font-size: 12.5px;
  line-height: 1.5;
}

.st94 {
  align-self: flex-start;
  max-width: 82%;
  background: rgba(91, 95, 239, .2);
  color: #fff;
  padding: 10px 13px;
  border-radius: 12px 12px 12px 4px;
  font-size: 12.5px;
  line-height: 1.5;
}

.st95 {
  align-self: flex-start;
  display: flex;
  gap: 4px;
  padding: 10px 13px;
  background: rgba(91, 95, 239, .14);
  border-radius: 12px 12px 12px 4px;
}

.st96 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: dotBounce2 1.3s infinite ease-in-out;
}

.st97 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: dotBounce2 1.3s infinite ease-in-out;
  animation-delay: .15s;
}

.st98 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: dotBounce2 1.3s infinite ease-in-out;
  animation-delay: .3s;
}

.st99 {
  background: var(--base);
  padding: 70px 40px 100px;
}

.st100 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
}

.st101 {
  background: var(--ink);
  color: #fff;
  border-radius: 22px;
  padding: 44px;
  position: relative;
  overflow: hidden;
}

.st102 {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(91, 95, 239, .35), transparent 50%);
}

.st103 {
  position: relative;
}

.st104 {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.st105 {
  font-size: 25px;
}

.st106 {
  margin-top: 12px;
  color: var(--on-dark-2);
  font-size: 14.5px;
  line-height: 1.6;
}

.st107 {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
}

.st108 {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.st109 {
  width: 19px;
  height: 19px;
}

.st110 {
  font-size: 12.5px;
  color: var(--on-dark-2);
  margin-bottom: 3px;
}

.st111 {
  font-size: 15px;
  font-weight: 600;
}

.st112 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.st113 {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 44px;
}

.st114 {
  font-size: 23px;
  margin-bottom: 6px;
}

.st115 {
  color: var(--text-2);
  font-size: 14px;
  margin-bottom: 26px;
}

.st116 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.st117 {
  margin-bottom: 18px;
}

.st118 {
  margin-bottom: 22px;
}

.st119 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--violet), var(--teal));
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
      border: 0;
    font-family: var(--font-body); cursor: pointer;
}
.st119 svg{
  padding-top: 2px;
}
.st119  br{
  display: none;
}


.st120 {
  display: flex;
  gap: 26px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.st121 {
  position: relative;
  background: var(--ink);
  padding: 80px 40px 100px;
  overflow: hidden;
}

.st122 {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 64px;
  align-items: center;
}

.st123 {
  height: 16px;
  margin-bottom: 20px;
}

.st124 {
  font-size: clamp(36px, 4.6vw, 54px);
  line-height: 1.08;
  font-weight: 600;
  color: #fff;
}

.st125 {
  background: linear-gradient(135deg, var(--violet), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.st126 {
  max-width: 520px;
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.65;
  color: #60b4ff;
  font-weight: 500;
}

.st127 {
  max-width: 520px;
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--on-dark-2);
}

.st128 {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.st129 {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
}

.st130 {
  display: flex;
  gap: 22px;
  margin-top: 44px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--on-dark-2);
  font-weight: 500;
}

.st131 {
  color: rgba(255, 255, 255, .25);
}

.st132 {
  position: absolute;
  top: 26px;
  left: 26px;
  right: -26px;
  bottom: -26px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--violet), var(--teal));
  opacity: .14;
}

.st133 {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--ink-soft), #0E1424);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 24px 50px -24px rgba(0, 0, 0, .5);
}

.st134 {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  height: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.st135 {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--violet);
}

.st136 {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
}

.st137 {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lavender);
}

.st138 {
  margin-left: 8px;
  font-size: 11.5px;
  color: var(--on-dark-2);
}

.st139 {
  display: flex;
  height: calc(100% - 44px);
}

.st140 {
  width: 120px;
  border-right: 1px solid rgba(255, 255, 255, .08);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: none;
}

.st141 {
  height: 9px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--violet), var(--teal));
  width: 80%;
}

.st142 {
  height: 9px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .08);
  width: 60%;
}

.st143 {
  height: 9px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .08);
  width: 70%;
}

.st144 {
  height: 9px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .08);
  width: 50%;
}

.st145 {
  flex: 1;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.st146 {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 14px;
}

.st147 {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .16);
  width: 55%;
  margin-bottom: 10px;
}

.st148 {
  height: 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .08);
  width: 85%;
  margin-bottom: 7px;
}

.st149 {
  height: 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .08);
  width: 65%;
}

.st150 {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.st151 {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  flex: none;
}

.st152 {
  height: 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .14);
  width: 70%;
}

.st153 {
  height: 8px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .08);
  overflow: hidden;
}

.st154 {
  height: 100%;
  width: 72%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--violet), var(--teal));
}

.st155 {
  font-size: 10.5px;
  color: var(--on-dark-2);
  margin-top: 8px;
}

.st156 {
  position: absolute;
  bottom: -28px;
  left: -28px;
  width: 240px;
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, .5);
  padding: 14px;
}

.st157 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.st158 {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--teal));
  flex: none;
}

.st159 {
  font-size: 11.5px;
  font-weight: 600;
  color: #fff;
}

.st160 {
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--on-dark-2);
  margin-bottom: 8px;
}

.st161 {
  display: flex;
  gap: 4px;
}

.st162 {
  animation-delay: .15s;
}

.st163 {
  animation-delay: .3s;
}

.st164 {
  background: #fcfbfb;
  padding: 110px 40px;
}

.st165 {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.st166 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--violet-deep);
  margin-bottom: 26px;
}

.st167 {
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.15;
}

.st168 {
  margin-top: 26px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-2);
}

.st169 {
  margin-top: 28px;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--text-1);
}

.st170 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 13px 26px;
  border-radius: 100px;
  background: var(--ink);
  color: #fff;
  font-size: 14.5px;
  font-weight: 600;
}

.st171 {
  display: flex;
  justify-content: center;
}

.st172 {
  max-width: 440px;
}

.st173 {
  bottom: 12px;
  left: -16px;
}

.st174 {
  display: flex;
  width: 100%;
}

.st175 {
  width: 50%;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, oklch(20% 0.02 250), oklch(13% 0.01 250));
  border: 1px solid rgba(140, 180, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.st176 {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(120, 160, 255, 0.05) 0 2px, transparent 2px 14px);
}

.st177 {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: oklch(92% 0.01 250 / 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 40px rgba(120, 170, 255, 0.4);
}

.st178 {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 20px solid #0a0c10;
  margin-left: 4px;
}

.st179 {
  position: absolute;
  bottom: 18px;
  left: 22px;
  z-index: 2;
}

.st180 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: oklch(72% 0.15 235);
}

.st181 {
  font-size: 34px;
  font-weight: 700;
  margin-top: 4px;
  color: #fff;
}

.st182 {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, oklch(20% 0.02 250), oklch(13% 0.01 250));
  border: 1px dashed rgba(140, 180, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  letter-spacing: 0.02em;
  color: oklch(70% 0.13 235);
  text-align: center;
  line-height: 1.2;
}

.st183 {
  text-align: center;
  max-width: 680px;
  margin: 100px auto 56px;
}

.st184 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}

.st185 {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-2);
}

.st186 {
  font-style: italic;
  font-size: 18px;
  color: oklch(0.55 0.18 254.24);
  margin-top: 30px;
}

.st187 {
  text-align: center;
}

.st188 {
  display: block;
  margin: auto;
  height: calc(80vh - 100px);
}

.st189 {
  background: var(--ink);
  padding: 110px 40px;
  position: relative;
  overflow: hidden;
}

.st190 {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.st191 {
  max-width: ;
  margin: 0 auto 40px;
  text-align: center;
}

.st192 {
  font-size: clamp(28px, 5vw, 98px);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 30px;
}

.st193 {
  font-size: clamp(18px, 3.6vw, 42px);
  line-height: 1.15;
  color: #4caaff;
}

.st194 {
  max-width: ;
  margin: 0 auto 70px;
  text-align: center;
}

.st195 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.3;
  background: linear-gradient(135deg, #fff, var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.st196 {
  margin-top: 18px;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--on-dark-2);
}

.st197 {
  font-size: clamp(18px, 3.6vw, 22px);
  line-height: 1.15;
  color: #4caaff;
}

.st198 {
  max-width: 100%;
  width: 320px;
}

.st199 {
  background: var(--base-alt);
  padding: 100px 40px;
}

.st200 {
  max-width: 740px;
  margin: 0 auto 60px;
  text-align: center;
}

.st201 {
  display: grid;
}

.st202 {
  padding: 0 28px 0 0;
  border-right: 1px solid var(--line);
}

.st203 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--violet-deep);
  line-height: 1;
}

.st204 {
  font-size: 15px;
  font-weight: 600;
  margin-top: 14px;
}

.st205 {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-2);
  margin-top: 8px;
}

.st206 {
  padding: 0 28px;
  border-right: 1px solid var(--line);
}

.st207 {
  padding: 0 0 0 28px;
}

.st208 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--violet), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.st209 {
  color: var(--text-3);
  font-weight: 500;
}

.st210 {
  text-align: center;
  margin-top: 75px;
}

.st211 {
  font-style: italic;
  font-size: 19px;
  color: oklch(20% 0.01 250);
}

.st212 {
  margin-top: 10px;
  font-style: italic;
  font-size: 19px;
  color: oklch(20% 0.01 250);
}

/* ============================================================
   Four Intelligence Layers (IQ · EQ · SQ · PQ) — editorial 2-up:
   copy + 2x2 ruled layer grid on the left, tablet showcase right,
   quotes centred beneath the copy column.
   ============================================================ */
.il-intro {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,.9fr);
  column-gap: 60px;
  align-items: start;
}
.il-intro .st200{text-align:left;}

.il-copy {
  min-width: 0;
}

.il-copy .st185 {
  max-width: 560px;
}

.il-layers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 560px;
  margin-top: 46px;
}

.il-layer {
  padding: 0 30px 30px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.il-layer:nth-child(even) {
  padding-right: 0;
  padding-left: 30px;
  border-right: 0;
}

.il-layer:nth-child(n+3) {
  padding-top: 30px;
  padding-bottom: 0;
  border-bottom: 0;
}

.il-layer .st203,
.il-layer .st208 {
  font-size: 30px;
  letter-spacing: -.01em;
}

.il-layer .st204 {
  margin-top: 10px;
}

/* --- tablet showcase --- */
.il-showcase {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: end;
  width: 100%;
  /* max-width: 462px; */
}

.il-showcase>img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  filter: drop-shadow(0 34px 60px rgba(11, 15, 26, .30)) drop-shadow(0 10px 22px rgba(11, 15, 26, .14));
}

.il-showcase-glow {
  position: absolute;
  z-index: 0;
  left: 4%;
  right: 4%;
  top: 8%;
  bottom: 2%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0, 111, 211, .30), rgba(0, 111, 211, .12) 55%, transparent 78%);
  filter: blur(34px);
  opacity: .7;
  animation: glowPulse 6s ease-in-out infinite;
}

.il-showcase-chip {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  padding: 11px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 34px -16px rgba(11, 15, 26, .45);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-1);
}

.il-chip-dot {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 4px rgba(0, 111, 211, .14);
  animation: glowPulse 2s ease-in-out infinite;
}

/* --- pull quotes --- */
.il-quotes {
  grid-column: 1;
  max-width: 560px;
}

.il-quotes .st211,
.il-quotes .st212 {
  max-width: 500px;
  margin-inline: auto;
  font-size: 17.5px;
  line-height: 1.55;
}

.st213 {
  background: var(--ink);
  padding: 110px 40px;
}

.st214 {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 72px;
  align-items: center;
}

.st215 {
  font-size: clamp(26px, 3.4vw, 48px);
  line-height: 1.2;
  color: #fff;
}

.st216 {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--on-dark-2);
}

.st217 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.35;
  margin-top: 24px;
  color: #fff;
}

.st218 {
  color: var(--teal);
}

.st219 {
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .1);
  overflow: hidden;
  text-align: center;
}

.st220 {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.st221 {
  position: relative;
  max-width: 1040px;
  margin: 0 auto 90px;
}

.st222 {
  display: flex;
  position: relative;
  z-index: 1;
}

.st223 {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
}

.st224 {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #5B5FEF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 10px 20px -8px rgba(91, 95, 239, .55);
  flex: none;
}

.st225 {
  font-size: 15px;
  font-weight: 600;
  margin-top: 16px;
}

.st226 {
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.55;
  margin-top: 6px;
}

.st227 {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #7B76EF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 10px 20px -8px rgba(123, 118, 239, .55);
  flex: none;
}

.st228 {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #8B8FF7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 10px 20px -8px rgba(139, 143, 247, .55);
  flex: none;
}

.st229 {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #4FC7B8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 10px 20px -8px rgba(79, 199, 184, .55);
  flex: none;
}

.st230 {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #00D4B8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 10px 20px -8px rgba(0, 212, 184, .55);
  flex: none;
}

.st231 {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.st232 {
  background: linear-gradient(160deg, #fff, var(--card));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
}

.st233 {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(91, 95, 239, .14), rgba(0, 212, 184, .14));
  color: var(--violet-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.st234 {
  font-size: 17px;
  margin-bottom: 16px;
}

.st235 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.st236 {
  padding: 8px 14px;
  background: var(--card);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
}

.st237 {
  position: relative;
  max-width: 890px;
  margin: 0 auto;
  text-align: center;
}

.st238 {
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.2;
  color: #fff;
}

.st239 {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--on-dark-2);
  margin-bottom: 30px;
}

.st240 {
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.15;
  color: #4caaff;
}

.st241 {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.st242 {
  position: relative;
  z-index: 2;
  /* max-width: 840px; */
  margin: 0 auto;
  text-align: center;
}

.st243 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--on-dark-2);
  margin-bottom: 22px;
  font-weight: 500;
}

.st244 {
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.08;
  color: #fff;
}

.st245 {
  max-width: 1000px;
  margin: 20px auto 0;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--on-dark-2);
}

.st246 {
  max-width: 1000px;
  margin: 20px auto 0;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--on-dark-2);
  margin-bottom: 30px;
}

.st247 {
  display: flex;
  justify-content: center;
  margin-top: 46px;
}

.st248 {
  max-width: 300px;
}

.st249 {
  bottom: 16px;
  left: -14px;
}

.st250 {
  background: #fdfdfd;
  padding: 100px 40px;
}

.st251 {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.st252 {
  width: 24px;
  height: 24px;
}

.st253 {
  font-size: 28px;
}

.st254 {
  margin-top: 16px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-2);
}

.st255 {
  margin-top: 14px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-2);
}

.st256 {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(160deg, #fff, var(--card));
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(11, 15, 26, .2);
}

.st257 {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  height: 46px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.st258 {
  margin-left: 8px;
  font-size: 12px;
  color: var(--text-2);
  font-weight: 600;
}

.st259 {
  display: flex;
  height: calc(100% - 46px);
}

.st260 {
  width: 130px;
  border-right: 1px solid var(--line);
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: none;
  background: #fff;
}

.st261 {
  height: 9px;
  border-radius: 5px;
  background: var(--line);
  width: 60%;
}

.st262 {
  height: 9px;
  border-radius: 5px;
  background: var(--line);
  width: 70%;
}

.st263 {
  height: 9px;
  border-radius: 5px;
  background: var(--line);
  width: 55%;
}

.st264 {
  flex: 1;
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.st265 {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}

.st266 {
  height: 8px;
  border-radius: 4px;
  background: var(--violet);
  opacity: .5;
  width: 60%;
  margin-bottom: 10px;
}

.st267 {
  height: 7px;
  border-radius: 4px;
  background: var(--line);
  width: 85%;
  margin-bottom: 7px;
}

.st268 {
  height: 7px;
  border-radius: 4px;
  background: var(--line);
  width: 70%;
}

.st269 {
  height: 8px;
  border-radius: 4px;
  background: var(--teal);
  opacity: .6;
  width: 50%;
  margin-bottom: 10px;
}

.st270 {
  height: 7px;
  border-radius: 4px;
  background: var(--line);
  width: 75%;
  margin-bottom: 7px;
}

.st271 {
  height: 7px;
  border-radius: 4px;
  background: var(--line);
  width: 60%;
}

.st272 {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  grid-column: 1/-1;
}

.st273 {
  height: 8px;
  border-radius: 4px;
  background: var(--lavender);
  opacity: .6;
  width: 40%;
  margin-bottom: 10px;
}

.st274 {
  height: 7px;
  border-radius: 4px;
  background: var(--line);
  width: 92%;
  margin-bottom: 7px;
}

.st275 {
  height: 7px;
  border-radius: 4px;
  background: var(--line);
  width: 80%;
}

.st276 {
  background: var(--ink);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.st277 {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.st278 {
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.st279 {
  background: linear-gradient(135deg, rgba(91, 95, 239, .22), rgba(0, 212, 184, .18));
  color: var(--teal);
}

.st280 {
  font-size: 28px;
  color: #fff;
}

.st281 {
  margin-top: 16px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--on-dark-2);
}

.st282 {
  margin-top: 14px;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--on-dark-2);
}

.st283 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  line-height: 1.4;
  margin-top: 22px;
  color: #fff;
}

.st284 {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.st285 {
  margin: 0 auto 20px;
}

.st286 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  line-height: 1.4;
  margin-top: 24px;
}

.st287 {
  color: var(--violet-deep);
}

.st288 {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 20% 30%, rgba(91, 95, 239, .16), transparent 45%);
}

.st289 {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.st290 {
  border-radius: 20px;
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 28px;
}

.st291 {
  font-size: 13px;
  font-weight: 600;
  color: var(--on-dark-1);
  margin-bottom: 20px;
}

.st292 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.st293 {
  border: 1px solid rgba(0, 212, 184, .35);
  border-radius: 12px;
  padding: 18px 10px;
  text-align: center;
  font-size: 12.5px;
  color: var(--on-dark-2);
}

.st294 {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.st295 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--violet-deep);
  margin-bottom: 16px;
}

.st296 {
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.2;
}

.st297 {
  display: grid;
  gap: 24px;
}

.st298 {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
}

.st299 {
  height: 150px;
  width: 100%;
  object-fit: cover;
}

.st300 {
  padding: 30px;
}

.st301 {
  margin-bottom: 14px;
}

.st302 {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-2);
}

.st303 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  margin-top: 16px;
  color: var(--text-1);
}

.st304 {
  font-size: clamp(26px, 3.4vw, 38px);
  color: #fff;
  line-height: 1.15;
}

.st305 {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 32px;
}

.st306 {
  width: 24px;
  height: 24px;
  color: var(--teal);
  margin-bottom: 16px;
}

.st307 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
}

.st308 {
  color: var(--on-dark-2);
  font-size: 14px;
  line-height: 1.65;
}

.st309 {
  background: #fdfdfd;
  padding: 90px 40px;
  text-align: center;
}

.st310 {
  display: flex;
  justify-content: center;
  margin-bottom: 44px;
}

.st311 {
  background: radial-gradient(closest-side, rgba(91, 95, 239, .5), rgb(0 111 211 / 20%) 55%, transparent 78%);
}

.st312 {
  bottom: 16px;
  right: -14px;
}

.st313 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.8vw, 32px);
  line-height: 1.35;
  max-width: 760px;
  margin: 0 auto;
}

.st314 {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.st315 {
  font-size: clamp(26px, 3.4vw, 38px);
  color: #fff;
  line-height: 1.2;
}

.st316 {
  color: var(--on-dark-2);
  font-size: 15px;
  margin: 18px auto 34px;
  max-width: 480px;
}

.st317 {
  position: absolute;
  top: -220px;
  left: 30%;
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(91, 95, 239, .45), rgba(0, 212, 184, .2) 45%, transparent 72%);
  filter: blur(24px);
  animation: glowPulse 6s ease-in-out infinite;
}

.st318 {
  max-width: 520px;
  margin-top: 20px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--on-dark-2);
}

.st319 {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 20px;
  background: rgb(0, 0, 0);
  border: 1px solid rgba(255, 255, 255, .1);
  overflow: hidden;
}

.st320 {
  display: block;
}

.st321 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
}

.st322 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  text-align: center;
  line-height: 1.3;
}

.st323 {
  width: 150px;
}

.st324 {
  position: absolute;
  top: 24px;
  left: 18px;
  width: 120px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, .12);
  text-align: center;
}

.st325 {
  position: absolute;
  top: 24px;
  right: 18px;
  width: 120px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, .12);
  text-align: center;
}

.st326 {
  position: absolute;
  bottom: 24px;
  left: 18px;
  width: 120px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, .12);
  text-align: center;
}

.st327 {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  margin: auto;
}

/* .st328 {
  width: 40px;
} */

.st329 {
  position: absolute;
  bottom: 24px;
  right: 18px;
  width: 120px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, .12);
  text-align: center;
}

.st330 {
  color: #000;
  font-weight: 700;
}

.st331 {
  max-width: 1000px;
  margin: 0 auto 64px;
  text-align: center;
}

.st332 {
  margin-bottom: 24px;
}

.st333 {
  grid-column: span 7;
  background: linear-gradient(160deg, #fff, var(--card));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.st334 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.8vw, 30px);
  line-height: 1.3;
  color: var(--text-1);
}

.st335 {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 20px;
  color: var(--text-2);
}

.st336 {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 14px;
  color: var(--text-2);
}

.st337 {
  grid-column: span 5;
  position: relative;
  border-radius: 22px;
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  min-height: 360px;
  padding-top: px;
}

.st338 {
  grid-column: span 5;
  background: var(--card);
  border-radius: 22px;
  padding: 40px;
}

.st339 {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  background: #fff;
  color: var(--violet-deep);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.st340 {
  font-size: 23px;
  margin-bottom: 14px;
  line-height: 1.25;
}

.st341 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.st342 {
  padding: 8px 14px;
  background: #fff;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
}

.st343 {
  grid-column: span 7;
  background: var(--ink-soft);
  border-radius: 22px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.st344 {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(91, 95, 239, .3), rgba(0, 212, 184, .25));
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.st345 {
  width: 26px;
  height: 26px;
}

.st346 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.4;
  color: #fff;
}

.st347 {
  color: var(--teal);
  margin-top: 20px;
  display: block;
}

.st348 {
  font-size: clamp(28px, 3.6vw, 42px);
  color: #fff;
  line-height: 1.15;
}

.st349 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.st350 {
  position: relative;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: 32px;
  overflow: hidden;
}

.st351 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--teal);
  margin-bottom: 16px;
  display: inline-block;
}

.st352 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
}

.st353 {
  color: var(--on-dark-2);
  font-size: 14px;
  line-height: 1.6;
}

.st354 {
  position: relative;
  background: linear-gradient(160deg, rgba(91, 95, 239, .14), rgba(0, 212, 184, .08));
  border: 1px solid rgba(0, 212, 184, .3);
  border-radius: 18px;
  padding: 32px;
  overflow: hidden;
}

.st355 {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--teal);
  margin-bottom: 16px;
  display: inline-block;
}

.st356 {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.st357 {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  margin-bottom: 70px;
}

.st358 {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marqueeScroll 26s linear infinite;
}

.st359 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--text-3);
  white-space: nowrap;
}

.st360 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.st361 {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 20px;
}

.st362 {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--text-2);
}

.st363 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.35;
  margin-top: 24px;
  color: var(--text-1);
}

.st364 {
  background: linear-gradient(180deg, #fff, var(--card));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px;
}

.st365 {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(91, 95, 239, .12), rgba(0, 212, 184, .12));
  color: var(--violet-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.st366 {
  font-size: 20px;
  margin-bottom: 10px;
}

.st367 {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-2);
}

.st368 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.st369 {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--text-2);
  margin-top: 14px;
}

.st370 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.st371 {
  background: linear-gradient(160deg, #fff, var(--card));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}

.st372 {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(91, 95, 239, .14), rgba(0, 212, 184, .14));
  color: var(--violet-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.st373 {
  width: 18px;
  height: 18px;
}

.st374 {
  font-size: 15px;
  margin-bottom: 12px;
}

.st375 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.st376 {
  padding: 6px 12px;
  background: var(--card);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-1);
}

/* ============================================================
   Link — light header + hero redesign (index)
   ============================================================ */
.lk-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.lk-header.scrolled {
  background: rgba(250, 250, 252, .82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom-color: rgba(11, 15, 26, .06);
}

.lk-header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lk-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lk-brand-mark {
  width: 196px;
  height: 76px;
  object-fit: contain;
  flex: none;
}

.lk-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1;
}

.lk-brand-name sup {
  font-size: 11px;
  font-weight: 600;
  margin-left: 1px;
}

.lk-nav-group {
  display: flex;
  align-items: center;
  gap: 40px;
}

.lk-nav {
  display: flex;
  gap: 34px;
  font-size: 15px;
  font-weight: 500;
}

.lk-nav a {
  color: #3c4150;
  transition: color .2s ease;
}

.lk-nav a:hover {
  color: var(--ink);
}

.lk-header-cta {
  display: flex;
}

.lk-btn-dark {
  display: inline-flex;
  align-items: center;
  background: var(--ink);
  color: #fff;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity .2s ease;
}

.lk-btn-dark:hover {
  opacity: .85;
  color: #fff;
}

.lk-hero {
  position: relative;
  overflow: hidden;
  padding-top: 116px;
  background:
    /* radial-gradient(78% 72% at 74% 30%, rgb(193, 199, 218), rgba(255,255,255,0) 58%), linear-gradient(155deg,#f6f7fb 0%,#fff 48%,#d5d9e7 100%); */
    radial-gradient(50% 90% at 85% 12%, rgb(193, 199, 218), rgba(255, 255, 255, 0) 58%), linear-gradient(155deg, #f6f7fb 0%, #fff 48%, #d5d9e7 100%);
}

.lk-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  gap: 32px;
  align-items: center;
  min-height: 660px;
}

.lk-hero-copy {
  padding: 56px 0 72px;
  padding-left: 80px;
}

.lk-hero-title {
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.03;
  font-weight: 700;
  color: var(--ink);
}

.lk-grad {
  background: linear-gradient(115deg, #2f6bff 10%, #7b5cff 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lk-hero-sub {
  margin-top: 26px;
  max-width: 390px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-2);
}

.lk-hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.lk-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  padding: 15px 28px;
  border-radius: 12px;
  font-size: 15.5px;
  font-weight: 600;
  transition: transform .2s ease, opacity .2s ease;
}

.lk-btn-primary:hover {
  opacity: .9;
  color: #fff;
  transform: translateY(-1px);
}

.lk-btn-primary svg {
  width: 16px;
  height: 16px;
}

.lk-play {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.lk-play-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(11, 15, 26, .55);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.lk-play-ic svg {
  width: 13px;
  height: 13px;
  margin-left: 2px;
}

.lk-play:hover .lk-play-ic {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.lk-agent-card {
  margin-top: 52px;
  max-width: 360px;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(11, 15, 26, .08);
  border-radius: 22px;
  padding: 26px 28px;
  box-shadow: 0 30px 60px -32px rgba(11, 15, 26, .35);
}

.lk-agent-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-2);
}

.lk-agent-badge i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2f6bff;
  flex: none;
}

.lk-agent-head {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.01em;
}

.lk-agent-div {
  height: 1px;
  background: rgba(11, 15, 26, .1);
  margin: 20px 0 16px;
}

.lk-agent-tags {
  display: flex;
  gap: 24px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-3);
}

.lk-hero-visual {
  position: relative;
  align-self: end;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

/* soft ambient shadow behind her so the merged image has depth */
.lk-hero-visual::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  bottom: 6%;
  width: 66%;
  height: 150px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(23, 27, 45, .30), rgba(23, 27, 45, 0) 70%);
  filter: blur(26px);
}

.lk-hero-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 780px;
  object-fit: contain;
  -webkit-mask-image: radial-gradient(128% 116% at 58% 44%, #000 56%, rgba(0, 0, 0, .45) 80%, transparent 100%);
  mask-image: radial-gradient(128% 116% at 58% 44%, #000 56%, rgba(0, 0, 0, .45) 80%, transparent 100%);
}

/* light-theme burger + mobile dropdown (index only) */
body.page-index .nav-burger span {
  background: var(--ink);
}

body.page-index nav.mainnav.mobile-open {
  background: #fff;
  border-top: 1px solid rgba(11, 15, 26, .08);
  box-shadow: 0 24px 40px -20px rgba(11, 15, 26, .25);
}

body.page-index nav.mainnav.mobile-open a {
  color: var(--ink);
  border-bottom: 1px solid rgba(11, 15, 26, .06);
}

/* ============================================================
   Built for a relationship — features panel on the continuous
   light gradient that flows out of the hero.
   ============================================================ */
.lk-value {
  position: relative;
  background: linear-gradient(180deg, #e4e7ee 0%, #eceef4 32%, #f5f6f9 100%);
  padding: 72px 40px 92px;
}

.lk-value-head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.lk-value-title {
  font-size: clamp(24px, 2.7vw, 31px);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink);
}

.lk-value-sub {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-2);
}

.lk-value-sub strong {
  color: var(--ink);
  font-weight: 600;
}

.lk-features {
  max-width: 1120px;
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 24px;
  padding: 46px 20px;
  box-shadow: 0 30px 70px -44px rgba(11, 15, 26, .28);
}

.lk-feature {
  text-align: center;
  padding: 6px 24px;
}

.lk-feature+.lk-feature {
  border-left: 1px solid rgba(11, 15, 26, .06);
}

.lk-feature-ic {
  display: inline-flex;
  color: var(--ink);
}

.lk-feature-ic svg {
  width: 26px;
  height: 26px;
}

.lk-feature-title {
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
}

.lk-feature-desc {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2);
}

.lk-powered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.lk-powered-label {
  font-size: 13px;
  color: var(--text-3);
}

.lk-powered-logo {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: .01em;
  color: #aeb2be;
}

/* ============================================================
   Watch Before You Continue — she is centered with a shadow,
   the two video clips flank her on a black background.
   ============================================================ */
.vsl {
  background: #000;
  padding: 90px 40px 0;
  overflow: hidden;
}

.vsl-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.vsl-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.vsl-title {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  color: #fff;
}

.vsl-desc {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--on-dark-2);
}

.vsl-quote {
  font-style: italic;
  font-size: 18px;
  color: #6ea8ff;
  margin-top: 26px;
}

.vsl-stage {
  max-width: 1240px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
}

.vsl-clip {
  position: relative;
  overflow: hidden;
  aspect-ratio: 17/12;
  border-radius: 16px;
  background: linear-gradient(135deg, oklch(20% .02 250), oklch(13% .01 250));
  border: 1px solid rgba(140, 180, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.vsl-clip .st181 {
  font-size: 18px;
}

.vsl-figure {
  align-self: end;
  justify-self: center;
}

/* .vsl-figure img {
	display: block;
	height: min(52vh,720px);
	width: auto;
	max-width: 100%;
	filter: drop-shadow(0 34px 60px rgba(90,150,255,.28)) drop-shadow(0 14px 34px rgba(0,0,0,.65));
} */
.vsl-figure img {
  display: block;
  width: 340px;
  max-width: 100%;
  filter: drop-shadow(0 34px 60px rgba(90, 150, 255, .28)) drop-shadow(0 14px 34px rgba(0, 0, 0, .65));
}



.shadow-for-white-bg {
  filter: none;
}

/* ============================================================
   PRICING PAGE (Pricing.html — body.page-pricing)
   Reuses the site palette (var(--violet)/--card/--ink/--line),
   Outfit + Jost fonts, and the shared header/footer.
   Layout: light hero → main block (values sidebar · plan card ·
   character on the right) → trust strip.
   ============================================================ */
.pr-hero {
  background: #fdfcfc;
  padding: 64px 40px 24px;
  text-align: center;
  position: relative;
  z-index: 9;
}

.pr-hero-inner {
  max-width: 840px;
  margin: 0 auto;
}

.pr-hero-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.6vw, 50px);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -.01em;
}

.pr-hero-title span {
  color: var(--violet);
}

.pr-hero-sub {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-3);
}

/* ---- Main block: sidebar · card · character ---- */
.pr-main {
  position: relative;
  background: #fdfcfc;
  padding: 65px 40px 10px;
}

.pr-main-inner {
  position: relative;
  max-width: 1430px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  gap: 48px;
  padding-right: 320px;
  align-items: center;
}

/* left values column */
.pr-side-eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 14px;
}

.pr-side-title {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.2;
  color: var(--ink);
}

.pr-side-desc {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 22px;
}

.pr-sv {
  display: flex;
  gap: 13px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.pr-sv:first-of-type {
  margin-top: 22px;
}

.pr-sv-ic {
  flex: none;
  color: var(--violet);
}

.pr-sv-ic svg {
  width: 24px;
  height: 24px;
}

.pr-sv h3 {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 5px;
}

.pr-sv p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-2);
}

.pr-side-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-3);
}

.pr-side-foot svg {
  flex: none;
  width: 16px;
  height: 16px;
}

/* plan card (light, matches the reference) */
.pr-cards {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 9;
}

.pr-card {
  width: 100%;
  max-width: 380px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 28px;
}

.pr-card-ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 111, 211, .12), rgba(0, 162, 255, .12));
  color: var(--violet);
  margin-bottom: 18px;
}

.pr-card-ic svg {
  width: 24px;
  height: 24px;
}

.pr-card-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
}

.pr-card-desc {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-2);
}

.pr-card-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 20px;
  line-height: 1;
}

.pr-card-price small {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-3);
}

.pr-card-onboard {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-3);
}

.pr-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 14px 18px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--violet), #00a2ff);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  transition: opacity .2s ease, transform .2s ease;
}

.pr-card-cta:hover {
  opacity: .92;
  color: #fff;
  transform: translateY(-1px);
}

.pr-card-trial {
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
  color: var(--text-3);
}

.pr-card-div {
  height: 1px;
  background: var(--line);
  margin: 22px 0 18px;
}

.pr-feats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pr-feats li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-1);
}

.pr-feats li svg {
  flex: none;
  width: 16px;
  height: 16px;
  color: var(--violet);
  margin-top: 2px;
}

.pr-card-learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--violet);
}

.pr-card-learn svg {
  width: 16px;
  height: 16px;
  transition: transform .2s ease;
}

.pr-card-learn:hover svg {
  transform: translateX(3px);
}

/* character on the right, bleeding off the edge (stands tall, head reaches up toward the hero) */
.pr-figure-bot {
  position: absolute;
  right: -25px;
  bottom: -75px;
  width: auto;
  height: 850px;
  z-index: 1;
  pointer-events: none;
}

.pr-note {
  max-width: 1240px;
  margin: 26px auto 0;
  text-align: center;
  font-size: 14.5px;
  color: var(--text-2);
  position: relative;
  z-index: 9;
}

.pr-note a {
  color: var(--violet);
  font-weight: 600;
}

/* ---- Founding member / Lifetime VIP offer badges (hero) ---- */
.pr-offers-section {
  position: relative;
  z-index: 9;
  background: #fff;
  padding: 25px 40px 0;
}

.pr-offers {
  max-width: 1075px;
  margin: 0px auto 0;
  display: grid;
  /* two across while each badge still fits its copy, one across below that */
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}

.pr-offer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  padding: 14px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
}

.pr-offer-ic {
  flex: none;
  color: var(--violet);
  margin-top: 2px;
}

.pr-offer-ic svg {
  width: 22px;
  height: 22px;
}

.pr-offer-title {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 4px;
}

.pr-offer-text {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-2);
}

.pr-offer-text strong {
  color: var(--ink);
  font-weight: 700;
}

/* ---- Two-card row + featured "Expanded" plan ---- */
.pr-cards {
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
}

/* cards sit side by side while there is room for both, then wrap
   to a single centred column — no breakpoint needed */
.pr-card {
  position: relative;
  overflow: hidden;
  flex: 1 1 310px;
}

/* Featured "Expanded" card runs on its own purple palette */
.pr-card.is-featured {
  --pv: #7c3aed;
  --pv-soft: #a855f7;
  --pv-line: #e2d5f7;
  background: linear-gradient(180deg, #efe6fd 0%, #f9f5ff 42%, #ffffff 100%);
  border-color: var(--pv-line);
}

.pr-card.is-featured .pr-card-ic {
  background: #e6d8fb;
  color: var(--pv);
}

.pr-card.is-featured .pr-card-div {
  background: var(--pv-line);
}

.pr-card.is-featured .pr-feats li svg {
  color: var(--pv);
}

.pr-card.is-featured .pr-card-learn {
  color: var(--pv);
}

.pr-card-ribbon {
  position: absolute;
  top: 22px;
  right: -54px;
  width: 190px;
  padding: 6px 0;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
}

.pr-card-tag {
  margin-top: 6px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--pv, var(--violet));
}

.pr-card-cta.is-soon {
  background: rgba(255, 255, 255, .8);
  border: 1.5px solid var(--pv, var(--violet));
  color: var(--pv, var(--violet));
  cursor: default;
}

.pr-card-cta.is-soon:hover {
  color: var(--pv, var(--violet));
  opacity: 1;
  transform: none;
}

.pr-card-trial-alt {
  color: var(--pv, var(--violet));
  font-weight: 600;
}

.pr-feats-head {
  margin-bottom: 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--pv, var(--violet));
}

/* ---- Onboarding pill inside the helper note ---- */
.pr-note-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 10px;
  padding: 7px 15px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: #fff;
  font-size: 13px;
  color: var(--text-2);
  vertical-align: middle;
}

.pr-note-pill svg {
  flex: none;
  width: 15px;
  height: 15px;
  color: var(--violet);
}

/* ---- Lifetime VIP footnote ---- */
.pr-footnote {
  max-width: 1240px;
  margin: 34px auto 0;
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-3);
}

.pr-footnote span {
  color: var(--violet);
}

/* ---- Trust strip ---- */
.pr-trust {
  background: #fdfcfc;
  padding: 40px 40px 90px;
}

.pr-trust-inner {
  max-width: 1240px;
  margin: 0 auto;
  background: var(--card);
  border-radius: 22px;
  padding: 34px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.pr-trust-item {
  display: flex;
  gap: 14px;
  text-align: left;
}

.pr-value-ic {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--violet);
}

.pr-value-ic svg {
  width: 22px;
  height: 22px;
}

.pr-trust-item h4 {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 5px;
}

.pr-trust-item p {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-2);
}


/* contact from fixes */
span.field-error {
    color: red;
    font-size: 13px;     font-weight: 500;
}

.cf7-contact-wrap textarea {
    height: 100px;
}
.captcha-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 20px !important;
}

.captcha-wrapper .wpcf7-form-control-wrap {width: auto !important;}
.wpestate_refresh_captcha_btn {
    cursor: pointer;
}


.logo img, .st5 {
    height: auto;
    width: 290px; transition: .4s;
}
header.lk-header.scrolled .lk-header-inner {padding: 4px 40px;}
header.lk-header.scrolled .logo img, header.st2.scrolled .st5{
    width: 250px;
} 

.vsl {
    scroll-margin-top: 70px;
}
span.star-mandatory {
 color: red;
}


/* ============================================================
   ABOUT PAGE — About.html (body.page-about)
   Scoped stylesheet. Loaded AFTER css/style.css so it inherits
   the shared palette (--violet / --ink / --card / --line),
   Outfit + Jost fonts, and the shared header/footer (.st* classes).

   Rhythm:  split hero → story (sticky label + readable column)
            → dark statement band → pillars → contrast → CTA
   ============================================================ */

.ab-wrap {
  --ab-bg: #fdfcfc;
  --ab-bg-alt: #f4f6fb;
  --ab-measure: 660px;
  --ab-shadow: 0 20px 50px rgba(11, 15, 26, .07);
}

/* shared section shell */
.ab-sec {
  padding: 92px 40px;
}

.ab-sec-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.ab-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--violet);
}

.ab-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  opacity: .6;
}

.ab-eyebrow.is-center::before {
  display: none;
}

/* ============================================================
   HERO — asymmetric split, text left / figure right
   ============================================================ */
.ab-hero {
  position: relative;
  background: var(--ab-bg);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.ab-hero::before {
  content: "";
  position: absolute;
  right: -180px;
  top: -160px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0, 111, 211, .14), transparent 72%);
  pointer-events: none;
}

.ab-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 74px 40px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 40px;
  align-items: end;
}

.ab-hero-copy {
  padding-bottom: 84px;
}

.ab-hero-title {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.015em;
  color: var(--ink);
}

.ab-hero-title span {
  color: var(--violet);
  display: block;
}

.ab-hero-sub {
  margin-top: 22px;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-2);
}

.ab-hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}

/* small proof row under the hero copy */
.ab-hero-meta {
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
}

.ab-hero-meta div {
  max-width: 180px;
}

.ab-hero-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.ab-hero-meta span {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-3);
}

.ab-hero-figure {
  position: relative;
  align-self: end;
  text-align: center;
}

.ab-hero-figure img {
  display: block;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ============================================================
   STORY — sticky label column + one readable text column
   ============================================================ */
.ab-story {
  background: var(--ab-bg);
}

.ab-story-inner {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.ab-story-aside {
  position: sticky;
  top: 110px;
}

.ab-story-aside h2 {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.ab-story-note {
  margin-top: 18px;
  padding-left: 16px;
  border-left: 2px solid var(--violet);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-2);
}

.ab-story-body {
  max-width: var(--ab-measure);
}

.ab-story-body p {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--text-2);
}

.ab-story-body p + p {
  margin-top: 24px;
}

.ab-story-body .ab-lead {
  font-size: 19.5px;
  line-height: 1.7;
  color: var(--text-1);
}

.ab-story-body strong {
  color: var(--ink);
  font-weight: 600;
}

.ab-story-body em {
  font-style: normal;
  color: var(--violet);
  font-weight: 500;
}

/* inline pull-quote inside the story */
.ab-pull {
  margin: 34px 0;
  padding: 26px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--violet);
  border-radius: 0 14px 14px 0;
  box-shadow: var(--ab-shadow);
}

.ab-pull p {
  font-family: var(--font-display);
  font-size: 19px !important;
  font-weight: 600;
  line-height: 1.5 !important;
  color: var(--ink) !important;
  letter-spacing: -.005em;
}

.ab-pull span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* ============================================================
   STATEMENT — dark full-width band
   ============================================================ */
.ab-statement {
  position: relative;
  background: var(--ink);
  padding: 86px 40px;
  overflow: hidden;
  text-align: center;
}

.ab-statement::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 900px;
  height: 520px;
  transform: translate(-50%, -50%);
  background: radial-gradient(closest-side, rgba(0, 111, 211, .28), transparent 70%);
  pointer-events: none;
}

.ab-statement-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.ab-statement h2 {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: clamp(27px, 3.8vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.015em;
  color: #fff;
}

.ab-statement p {
  margin-top: 20px;
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--on-dark-2);
}

.ab-statement .ab-eyebrow {
  color: #6cb6ff;
}

/* ============================================================
   PILLARS
   ============================================================ */
.ab-pillars {
  background: var(--ab-bg-alt);
  border-bottom: 1px solid var(--line);
}

.ab-head {
  max-width: 660px;
  margin-bottom: 46px;
}

.ab-head h2 {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: clamp(27px, 3.4vw, 38px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.01em;
  color: var(--ink);
}

.ab-head p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-2);
}

.ab-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.ab-pillar {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 26px 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.ab-pillar:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 111, 211, .38);
  box-shadow: var(--ab-shadow);
}

.ab-pillar-num {
  position: absolute;
  top: 24px;
  right: 26px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--text-3);
  opacity: .55;
}

.ab-pillar-ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0, 111, 211, .09);
  color: var(--violet);
  margin-bottom: 20px;
}

.ab-pillar-ic svg {
  width: 23px;
  height: 23px;
}

.ab-pillar h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 9px;
}

.ab-pillar p {
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--text-2);
}

/* ============================================================
   CONTRAST — traditional AI vs relational intelligence
   ============================================================ */
.ab-contrast {
  background: var(--ab-bg);
}

.ab-contrast-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
}

.ab-col {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 32px;
  background: #fff;
}

.ab-col.is-accent {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: var(--ab-shadow);
}

.ab-col-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--card);
  color: var(--text-2);
  margin-bottom: 18px;
}

.ab-col.is-accent .ab-col-tag {
  background: rgba(0, 111, 211, .24);
  color: #fff;
}

.ab-col h3 {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 20px;
}

.ab-col.is-accent h3 {
  color: #fff;
}

.ab-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.ab-list li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-2);
}

.ab-col.is-accent .ab-list li {
  color: var(--on-dark-2);
}

.ab-list svg {
  width: 19px;
  height: 19px;
  flex: none;
  margin-top: 2px;
  color: var(--text-3);
}

.ab-col.is-accent .ab-list svg {
  color: #6cb6ff;
}

/* ============================================================
   CTA
   ============================================================ */
.ab-cta {
  background: var(--ab-bg-alt);
  border-top: 1px solid var(--line);
  padding: 76px 40px 84px;
}

.ab-cta-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  flex-wrap: wrap;
}

.ab-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--ink);
}

.ab-cta p {
  margin-top: 12px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 540px;
}

.ab-cta-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}

/* ---------------- buttons ---------------- */
.ab-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.ab-btn svg {
  width: 18px;
  height: 18px;
}

.ab-btn-primary {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 111, 211, .24);
}

.ab-btn-primary:hover {
  transform: translateY(-2px);
  color: #fff;
}

.ab-btn-outline {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.ab-btn-outline:hover {
  transform: translateY(-2px);
  border-color: var(--violet);
  color: var(--violet);
}


/* ============================================================
   BINDERS — "Your Agent Has a Brain"
   copy left, connected-knowledge diagram right
   ============================================================ */
.ab-brain {
  position: relative;
  background: #f3f4fa;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

/* faint dotted field so the section reads as its own surface */
.ab-brain::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(11, 15, 26, .07) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(closest-side at 78% 42%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(closest-side at 78% 42%, #000, transparent 78%);
  pointer-events: none;
}

.ab-brain-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
  gap: 56px;
  align-items: center;
}

.ab-brain-copy {
  max-width: var(--ab-measure);
}

.ab-brain-title {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: clamp(27px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.015em;
  color: var(--ink);
}

.ab-brain-title span {
  color: var(--violet);
}

.ab-brain-copy p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-2);
}

.ab-brain-copy p + p {
  margin-top: 20px;
}

.ab-brain-lead {
  margin-top: 22px;
  font-size: 18.5px !important;
  line-height: 1.72 !important;
  color: var(--text-1) !important;
}

.ab-brain-quote {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--violet);
  border-radius: 0 14px 14px 0;
  box-shadow: var(--ab-shadow);
}

.ab-brain-quote svg {
  width: 26px;
  height: 26px;
  flex: none;
  color: var(--violet);
  opacity: .75;
}

.ab-brain-quote p {
  font-family: var(--font-display);
  font-size: 19px !important;
  font-weight: 600;
  line-height: 1.45 !important;
  letter-spacing: -.005em;
  color: var(--ink) !important;
}

/* home page video section */


/* VSL uploaded-video modal */
.vsl-clip {
  width: 100%;
  padding: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  appearance: none;
}

.vsl-clip:disabled {
  cursor: default;
}

.vsl-video-modal[hidden] {
  display: none;
}

.vsl-video-modal {
  position: fixed;
  z-index: 100000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.vsl-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .82);
}

.vsl-video-modal__content {
  position: relative;
  z-index: 1;
  width: min(100%, 1100px);
  max-height: calc(100vh - 48px);
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .55);
}

.vsl-video-modal__player {
  display: block;
  width: 100%;
  max-height: calc(100vh - 48px);
  background: #000;
}

.vsl-video-modal__close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .72);
  color: #fff;
  font-size: 30px;
  line-height: 34px;
  cursor: pointer;
}

body.vsl-modal-open {
  overflow: hidden;
}

.vsl-video-description {
    font-weight: 300;
    margin-top: 4px;
    color: #fff;
    font-size: 12px;letter-spacing: 0.5px;
}

.vsl-stage .st179 {
    left: 0;
    padding: 0 20px;
    bottom: 12px;
}


.ab-brain-figure img {
    border-radius: 26px;
}
























/* ============================================================
   RESPONSIVE — all breakpoints in ONE place (Bootstrap scale)
   Bootstrap "-down" breakpoints:
     xl  <= 1199.98px   large tablet / small laptop
     lg  <=  991.98px   tablet landscape
     md  <=  767.98px   tablet portrait
     sm  <=  575.98px   phone
   Ordered largest -> smallest so tighter values override.
   Unlayered + !important so they win over the .st* classes.
   ============================================================ */
@media (max-width:1399px) {
   .pr-main-inner {grid-template-columns: 180px minmax(0, 1fr);    padding-right: 260px;}
   .pr-card {flex: 1 1 246px;}
   .pr-figure-bot {height: 680px;}

   .vsl-video-description {font-size: 11px;    letter-spacing: 0px;}
   .st177 {width: 60px;    height: 60px;}
}

/* ---------- <= 1199.98px  (Bootstrap xl-down) ---------- */
@media (max-width:1199.98px) {
  .lk-brand-mark {
    width: 160px;
    height: auto;
  }

  /* section vertical rhythm + column-gap trims */
  .st41,
  .st51,
  .st78,
  .st99,
  .st121,
  .st164,
  .st189,
  .st199,
  .st213,
  .st250,
  .st276,
  .st309 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  .st12,
  .st69,
  .st83,
  .st33 {
    padding-top: 76px !important;
  }

  .vsl {
    padding-top: 76px !important;
  }

  .st13,
  .st165,
  .st214,
  .st251,
  .st277,
  .st289,
  .st360,
  .st368,
  .st100 {
    gap: 44px !important;
  }

  .st221 {
    margin-bottom: 60px !important;
  }

  .vsl-figure img {
    width: auto;
    max-height: 350px;
  }

  /* four intelligence layers: tighter 2-up */
  .il-intro {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 400px) !important;
    column-gap: 44px !important;
  }

  .il-showcase {
    max-width: 400px;
  }

  .st177 {
    width: 55px;
    height: 55px;
  }

    .logo img, .st5 {
    height: auto;
    width: 190px;
}
header.lk-header.scrolled .logo img, header.st2.scrolled .st5 {
    width: 170px;
}
.st61 {
    width: 200px;
}

  /* pricing: two plan cards need the character's gutter back */
  .pr-main-inner {
    padding-right: 0;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 36px;
  }

  .pr-figure-bot { display: none; }
  .pr-main { padding-top: 45px; }
  .pr-offers { max-width: 900px; }

    /* about page */
    .ab-story-inner {    gap: 46px;    grid-template-columns: 215px minmax(0, 1fr);  }
    .ab-pillar-grid {    grid-template-columns: repeat(2, minmax(0, 1fr));  }


    .ab-brain-inner { gap: 40px;  }
    .ab-brain-figure{display: none;}
    .ab-brain-inner { grid-template-columns: 1fr;}

    .vsl-video-description {font-size: 10px;  line-height: 1.2;}
    .vsl-stage .st179 {padding: 0 10px; bottom: 7px;}
    .vsl-clip .st181 {font-size: 15px;}
}


/* ---------- <= 991.98px  (Bootstrap lg-down) ---------- */
@media (max-width:991.98px) and (min-width: 576px) {
  .vsl-video-description {font-size: 13px;  line-height: 1.5;}
  .vsl-stage .st179 {padding: 0 20px; bottom: 15px;}
  .vsl-clip .st181 {font-size: 20px;}
}


/* ---------- <= 991.98px  (Bootstrap lg-down) ---------- */
@media (max-width:991.98px) {

  /* header collapses to burger + mobile dropdown */
  nav.mainnav {
    display: none !important;
  }

  .header-cta {
    display: none !important;
  }

  .nav-burger {
    display: flex !important;
  }

  nav.mainnav.mobile-open {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0 !important;
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 8px 24px 20px;
    box-shadow: 0 24px 40px -20px rgba(0, 0, 0, .5);
    z-index: 60;
  }

  nav.mainnav.mobile-open a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    width: 100%;
  }

  /* multi-column layouts collapse */

  .st297{justify-items: center;}
  .g3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .g4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .g5 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .gfoot {
    grid-template-columns: 1fr 1fr !important;
  }

  .bento {
    grid-template-columns: 1fr !important;
  }

  .bento>div {
    grid-column: auto !important;
  }

  section div.st116,
  section div.st251,
  section div.st360,
  section div.st368,
  section div.st370 {
    grid-template-columns: 1fr !important;
  }

  /* four intelligence layers: stack copy -> showcase -> quotes */
  .il-intro {
    grid-template-columns: 1fr !important;
    row-gap: 44px;
  }

  .il-copy .st185,
  .il-layers,
  .il-quotes {
    max-width: none;
  }

  .il-showcase {
    grid-column: auto !important;
    grid-row: auto !important;
    justify-self: center;
    max-width: 420px;
  }

  .il-quotes {
    grid-column: auto !important;
    margin-top: 0 !important;
  }

  section div.st292 {
    grid-template-columns: 1fr !important;
  }

  section div.st349 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  section div.st222 {
    flex-direction: column !important;
    gap: 32px !important;
  }

  .timeline-track {
    display: none !important;
  }

  .contact-split {
    grid-template-columns: 1fr !important;
  }

  /* index hero stacks into one centered column */
  .lk-hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 12px;
    padding: 0 32px;
    text-align: center;
  }

  .lk-hero-copy {
    padding: 48px 0 0;
    padding-left: 0;
  }

  .lk-hero-title {
    margin-left: auto;
    margin-right: auto;
    max-width: 640px;
  }

  .lk-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .lk-hero-actions {
    justify-content: center;
  }

  .lk-agent-card {
    margin-left: auto;
    margin-right: auto;
  }

  .lk-agent-tags {
    justify-content: center;
  }

  .lk-hero-visual {
    height: auto;
    justify-content: center;
  }

  .lk-hero-visual img {
    max-height: min(58vh, 560px);
    -webkit-mask-image: radial-gradient(128% 116% at 50% 44%, #000 56%, rgba(0, 0, 0, .45) 80%, transparent 100%);
    mask-image: radial-gradient(128% 116% at 50% 44%, #000 56%, rgba(0, 0, 0, .45) 80%, transparent 100%);
  }

  /* index feature strip -> 2 up */
  .lk-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 0;
  }

  .lk-feature:nth-child(odd) {
    border-left: 0;
  }

  /* VSL stage stacks: the two videos first, figure anchored at the bottom */
  .vsl-stage {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 28px;
    margin-top: 36px;
  }

  .vsl-clip {
    order: 0;
    width: 100%;
    max-width: 520px;
  }

  .vsl-figure {
    order: 1;
    align-self: center;
    margin-top: 4px;
  }

  /* .vsl-figure img{height:auto;max-height:56vh;} */


  .pr-trust-inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .st359 {
    gap: 5px;
    font-size: 12px;
  }

  .st48 {
    width: 16px;
    height: 16px;
  }

  .st358 {
    gap: 22px;
  }

    /* pricing: values column stacks above the plan cards */
  .pr-main-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-right: 0;
  }

  .pr-figure-bot { display: none; }
  .pr-cards { justify-content: center; }
  .pr-side { max-width: 640px; margin: 0 auto; text-align: center; }
  .pr-sv { text-align: left; }
  .pr-side-foot { justify-content: center; }
  .pr-offers-section { padding: 22px 30px 0; }
  .st47 {padding: 20px;}


  /* about page */
  .ab-sec { padding: 62px 26px;  }
  .ab-hero-inner {    grid-template-columns: minmax(0, 1fr);    padding: 52px 26px 0;    gap: 0;  }
  .ab-hero-copy {    padding-bottom: 34px;  }
  .ab-hero-sub {    max-width: none;  }
  .ab-hero-figure img {    max-width: 320px;  }
  .ab-story-inner {    grid-template-columns: minmax(0, 1fr);    gap: 34px;  }
  .ab-story-aside {    position: static;  }
  .ab-story-body {   max-width: none;  }
  .ab-statement {    padding: 62px 26px;  }
  .ab-contrast-grid {    grid-template-columns: minmax(0, 1fr);  }

  .ab-cta {    padding: 58px 26px 66px;  }

  .ab-brain-inner {grid-template-columns: minmax(0, 1fr);    gap: 36px;  }
  .ab-brain-copy {    max-width: none;  }
 
  .ab-brain::before {mask-image: radial-gradient(closest-side at 70% 78%, #000, transparent 78%);    -webkit-mask-image: radial-gradient(closest-side at 70% 78%, #000, transparent 78%);}
 

}

/* ---------- 576px – 991.98px  (Bootstrap sm/md range) ---------- */
/* Four Intelligence Layers: the desktop row-of-4 uses per-item
   padding/border to draw dividers; when .g4 wraps to a 2x2 that
   scheme misaligns the second row. Rebuild it as a clean, aligned
   2x2 with symmetric padding and internal editorial rules. */
@media (min-width:576px) and (max-width:991.98px) {
  .st201 {
    gap: 0 !important;
  }

  .st202,
  .st206,
  .st207 {
    padding: 26px 32px !important;
    border: 0 !important;
  }

  .st201>*:nth-child(2n) {
    border-left: 1px solid var(--line) !important;
  }

  .st201>*:nth-child(n+3) {
    border-top: 1px solid var(--line) !important;
  }
}

/* ---------- <= 767.98px  (Bootstrap md-down) ---------- */
@media (max-width:767.98px) {
  section {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .st59 {
    padding: 60px 24px 28px !important;
  }

  /* footer (not a <section>) */
  .st41,
  .st51,
  .st78,
  .st99,
  .st121,
  .st164,
  .st189,
  .st199,
  .st213,
  .st250,
  .st276,
  .st309 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .st12,
  .st69,
  .st83,
  .st33 {
    padding-top: 60px !important;
  }

  .vsl {
    padding-top: 60px !important;
  }

  /* inner cards / panels */
  .st34 {
    padding: 40px 30px !important;
  }

  .st79 {
    padding: 0 !important;
  }

  .st101,
  .st113,
  .st333,
  .st338,
  .st343 {
    padding: 32px 28px !important;
  }

  .st19,
  .st47,
  .st232,
  .st305,
  .st350,
  .st354,
  .st364,
  .st300 {
    padding: 26px !important;
  }

  .st290 {
    padding: 24px !important;
  }

  /* section heading blocks a little tighter */
  .st43,
  .st183,
  .st191,
  .st194,
  .st200,
  .st220,
  .st294,
  .st331,
  .st356 {
    margin-bottom: 40px !important;
  }

  .lk-hero { padding-top: 80px;}
  .lk-agent-head {font-size: 17px;}
  .st198 { width: 180px;}
  .st357 {margin-bottom: 35px;}
  .st312 {right: 0;}
  .g2 {grid-template-columns: 1fr !important;}
    .g3 {grid-template-columns: 1fr;  }
      section div.st289{grid-template-columns: 1fr;  }
        /* pricing main + trust reflow */
  .pr-main-inner {grid-template-columns: 1fr;  gap: 34px;  }
    .pr-cards {justify-content: center;}
  .pr-main { padding: 34px 30px 10px; }
  .pr-hero { padding: 48px 30px 20px; }
  .pr-offers-section { padding: 20px 30px 0; }
  .pr-offers { grid-template-columns: 1fr; gap: 12px; }
  .pr-offer { border-radius: 18px; padding: 14px 18px; }
  .pr-note { font-size: 14px; }
  .pr-note-pill { display: inline-flex; margin: 12px 0 0; }
  .pr-footnote { margin-top: 26px; }
  .pr-trust { padding: 30px 30px 70px; }
      section div.st46{ grid-template-columns: 1fr !important; }

      /* about   */
      .ab-pillar-grid { grid-template-columns: minmax(0, 1fr);  }
  .ab-story-body p,  .ab-story-body .ab-lead {    font-size: 15.5px;    line-height: 1.8;  }
  .ab-col {    padding: 28px 24px;  }
  .ab-hero-meta {    gap: 22px;  }


  .ab-brain-copy p { font-size: 15.5px;    line-height: 1.8;  }
  .ab-brain-lead {font-size: 17px !important;  }
}

/* ---------- <= 575.98px  (Bootstrap sm-down / phones) ---------- */
@media (max-width:575.98px) {
  section {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .header-inner {
    padding: 4px 20px !important;
  }

  .st3 {
    padding: 6px 16px !important;
  }

  .st59 {
    padding: 46px 18px 26px !important;
  }

  .st41,
  .st51,
  .st78,
  .st99,
  .st121,
  .st164,
  .st189,
  .st199,
  .st213,
  .st250,
  .st276,
  .st309 {
    padding-top: 46px !important;
    padding-bottom: 46px !important;
  }

  .st12,
  .st69,
  .st83,
  .st33 {
    padding-top: 52px !important;
  }

  .vsl {
    padding-top: 48px !important;
  }

  /* collapse anything still 2-up down to a single column */
  .g4 {
    grid-template-columns: 1fr !important;
  }

  .g5 {
    grid-template-columns: 1fr !important;
  }

  section div.st349 {
    grid-template-columns: 1fr !important;
  }

  .gfoot {
    grid-template-columns: 1fr !important;
  }

  /* index four-layer row: clean gaps, drop the dangling side dividers */
  .st201 {
    gap: 26px !important;
  }

  .st202,
  .st206,
  .st207 {
    border: 0 !important;
    padding: 0 !important;
  }

  /* four intelligence layers: one column, rules become row separators */
  .il-layers {
    grid-template-columns: 1fr !important;
    margin-top: 34px;
  }

  .il-layer {
    padding: 0 0 24px !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }

  .il-layer:nth-child(n+2) {
    padding-top: 24px !important;
  }

  .il-layer:last-child {
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
  }

  .il-showcase-chip {
    bottom: 12px;
    padding: 9px 14px;
    font-size: 11.5px;
    white-space: normal;
    text-align: left;
  }

  /* keep the CTA button rows from feeling cramped */
  .st128,
  .st241 {
    gap: 12px !important;
  }

  /* long words, emails and headings must never force horizontal scroll */
  h1,
  h2,
  h3,
  h4 {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .__cf_email__,
  .st111 a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  /* rein in the few oversized fixed (non-clamp) type sizes */
  .st203,
  .st208 {
    font-size: 36px !important;
  }

  .il-layer .st203,
  .il-layer .st208 {
    font-size: 30px !important;
  }

  .st105,
  .st253,
  .st280,
  .st346 {
    font-size: 23px !important;
  }

  .st181 {
    font-size: 22px !important;
  }

  .st114,
  .st340 {
    font-size: 20px !important;
  }

  .st283,
  .st286 {
    font-size: 18px !important;
  }

  .st195 {
    font-size: 18px !important;
  }

  /* tighter inner-card padding */
  .st34 {
    padding: 30px 22px !important;
  }



  .st101,
  .st113,
  .st333,
  .st338,
  .st343 {
    padding: 26px 20px !important;
  }

  .st19,
  .st86,
  .st47,
  .st232,
  .st305,
  .st350,
  .st354,
  .st364,
  .st300,
  .st290 {
    padding: 22px !important;
  }

  /* stack the icon+text feature row on Technology */
  .st343 {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: flex-start !important;
  }

  /* index hero visual + agent card */
  .lk-hero-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .lk-hero-visual img {
    max-height: min(52vh, 420px);
  }

  .lk-agent-card {
    margin-top: 36px;
    max-width: 400px;
  }

  /* index feature strip -> 1 up */
  .lk-features {
    grid-template-columns: 1fr;
    padding: 30px 16px;
  }

  .lk-feature {
    border-left: 0 !important;
    padding: 18px 16px;
  }

  .lk-feature+.lk-feature {
    border-top: 1px solid rgba(11, 15, 26, .06);
  }

  /* pricing card + trust -> single column */
  .pr-card {
    max-width: none;
    flex: 1 1 100%;
    padding: 26px 22px;
  }

  .pr-cards {
    gap: 20px;
  }

  .pr-card-ribbon {
    top: 20px;
    right: -58px;
    width: 200px;
    font-size: 10px;
  }

  .pr-card-price { font-size: 34px; }

  .pr-offers-section { padding-top: 18px; }

  .pr-offer {
    padding: 14px 16px;
    gap: 10px;
  }

  .pr-offer-title { font-size: 11px; }

  .pr-note-pill {
    display: flex;
    justify-content: center;
    margin: 12px auto 0;
  }

  .pr-footnote { font-size: 12.5px; }

  .pr-trust-inner {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }

  /* AI diagram scales down (tight values, safe on the smallest phones).
     size only — do NOT set top+bottom (or left+right) together or the badge
     stretches to span the box and the corner badges overlap each other */
  .ai-diagram {
    height: 260px !important;
  }

  .ai-core {
    width: 80px !important;
    height: 80px !important;
  }

  .ai-core span {
    font-size: 10.5px !important;
  }

  .ai-badge {
    width: 84px !important;
    padding: 8px 9px !important;
  }

  .st324,
  .st325 {
    top: 14px !important;
    bottom: auto !important;
  }

  .st326,
  .st329 {
    top: auto !important;
    bottom: 14px !important;
  }

  .st324,
  .st326 {
    left: 12px !important;
    right: auto !important;
  }

  .st325,
  .st329 {
    right: 12px !important;
    left: auto !important;
  }

  .ai-badge div {
    font-size: 10px !important;
  }

  .float-card {
    max-width: 82% !important;
    width: auto !important;
  }

  body.page-technology .ai-diagram {
    height: 250px !important;
  }

  body.page-technology .ai-core {
    width: 72px !important;
    height: 72px !important;
  }

  body.page-technology .ai-core span {
    font-size: 9.5px !important;
  }

  body.page-technology .ai-badge {
    width: 80px !important;
    padding: 7px 8px !important;
  }

  body.page-technology .ai-badge div {
    font-size: 9.5px !important;
  }

  /* Portal "Projects Workspace" mock scales down */
  .st256 {
    height: 300px !important;
  }

  .st260 {
    width: 82px !important;
    padding: 12px 8px !important;
  }

  .st264 {
    padding: 12px !important;
    gap: 8px !important;
  }

  .st265,
  .st272 {
    padding: 10px !important;
  }

  .st70 {
    flex-direction: column;
  }

  .captcha-wrapper .wpcf7-form-control-wrap {
    width: 250px!important;   
}
.g-recaptcha {
    height: 63px;         display: block;
    overflow: hidden;
}
.g-recaptcha > div {
    transform: scale(0.8);
    transform-origin: 0 0;
}

.st60 { gap: 12px;}
.st173 {left: 0;}

/* about */
.ab-sec {
    padding: 48px 18px;
  }

  .ab-hero-inner {
    padding: 38px 18px 0;
  }

  .ab-statement {
    padding: 48px 18px;
  }

  .ab-cta {
    padding: 46px 18px 54px;
  }

  .ab-pull {
    padding: 22px 20px;
  }

  .ab-pull p {
    font-size: 17px !important;
  }

  .ab-hero-meta div {
    max-width: none;
  }

  .ab-btn {
    width: 100%;
    justify-content: center;
  }

  .ab-hero-actions,
  .ab-cta-actions {
    width: 100%;
  }

  .ab-brain-quote { padding: 20px;    gap: 13px;  }
  .ab-brain-quote p { font-size: 17px !important;  }

  .vsl-clip .st181 {font-size: 15px !important;}
}

/* ---------- Motion preference (accessibility, not width-based) ---------- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .cc-glow,
  .cc-chip .dot i {
    animation: none;
  }

  .timeline-track .track-base {
    transition: none;
    transform: scaleX(1);
  }

  .timeline-track .track-glow {
    animation: none;
    opacity: 0;
  }

  /* about page */
    .ab-pillar,
  .ab-btn {
    transition: none;
  }

  .ab-pillar:hover,
  .ab-btn:hover {
    transform: none;
  }
}
