/* Locked .vk-footer, lifted verbatim from css/vedika-design-system.css.
 * Only the .vk-footer rules and the tokens they reference are taken.
 * The whole file is NOT linked: this page defines its own `.sheet`, and
 * the design system defines an incompatible one -- its own header says so.
 *
 * --vk-font-body is overridden to this page's --body. The footer sets
 * `font-family: var(--vk-font-body)` on itself deliberately (it once
 * inherited Fragment Mono from index.html and rendered the wordmark as
 * 'V e d i k a'), so the override has to happen on the token, not by
 * letting it inherit. */
.vk-footer{--vk-font-body:var(--body);--vk-font-display:var(--display)}
:root{
  --vk-ink:           #0C0C0E;
  --vk-space:         #09090B;
  /* Was 'Outfit'. Outfit is the rejected design system's body face, and this is
   * a :root declaration — so the locked footer stylesheet was publishing a
   * non-locked font as a global token to every page that linked it. The line
   * above (.vk-footer{--vk-font-body:var(--body)}) rebinds it inside the footer,
   * which is why the footer itself always looked right and this stayed hidden;
   * anything ELSE on the page reading --vk-font-body got Outfit. The fallback
   * chain is the locked body face now. */
  --vk-font-body:     'DM Sans', system-ui, sans-serif;
}




.vk-footer {
  padding: clamp(14px, 2.2vw, 34px);
  background: var(--vk-space);

  font-family: var(--vk-font-body);
}



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



.vk-footer.sing-arr-footer .vk-footer__plate {
  color: var(--vk-ink) !important;
}


/* THE FOOTER USES THE PAGE'S MEASURE.
 *
 * The plate had no max-width, so it grew with the viewport while the content
 * above it stayed pinned to `.wrap`'s 1060px. Measured at a 1732px viewport:
 * content 1060px, plate 1649px — a 589px mismatch, widening with every extra
 * pixel of screen. Reading down the page you cross from a centred column into
 * a near-full-bleed band, which is the single loudest "this is two different
 * websites" cue on every one of these pages.
 *
 * 1060px is the locked measure (css/vk-locked.css:12 — `.wrap`), and the
 * footer is part of the page, not a separate band, so it takes the same one.
 * The 28px inline padding matches `.wrap` too, so the footer's first column
 * starts on the same vertical as the content above it. */
.vk-footer__plate {
  position: relative;
  overflow: hidden;
  max-width: 1060px;
  margin-inline: auto;
  border-radius: clamp(18px, 2vw, 30px);
  padding: clamp(26px, 3.4vw, 54px) clamp(22px, 3vw, 48px) clamp(14px, 1.4vw, 22px);
  isolation: isolate;
  display: grid;
  gap: clamp(12px, 1.5vw, 20px);
  background: #F3ECEF;
}



.vk-footer__wash {
  position: absolute;

  inset: 0;
  transform: scale(1.24);
  transform-origin: 50% 50%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 62% 78% at 6% 4%,   rgba(167,139,250,0.95) 0%, rgba(167,139,250,0) 62%),
    radial-gradient(ellipse 54% 70% at 88% 2%,  rgba(56,189,248,0.88) 0%,  rgba(56,189,248,0) 60%),
    radial-gradient(ellipse 70% 62% at 74% 96%, rgba(244,63,94,0.72) 0%,   rgba(244,63,94,0) 62%),
    radial-gradient(ellipse 58% 58% at 24% 92%, rgba(251,191,36,0.62) 0%,  rgba(251,191,36,0) 60%),
    radial-gradient(ellipse 46% 46% at 52% 46%, rgba(255,255,255,0.50) 0%, rgba(255,255,255,0) 70%);
  filter: saturate(1.12);
}

.vk-footer__plate > *:not(.vk-footer__wash) { position: relative; z-index: 1; }


.vk-footer__head { display: grid; gap: clamp(14px, 1.8vw, 24px); }


.vk-footer__statement {
  margin: 0;
  max-width: 18ch;
  font-family: var(--vk-font-body);
  font-size: clamp(26px, 3.6vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.032em;
  font-weight: 600;

  color: var(--vk-ink);
  text-wrap: balance;
}



.vk-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr);
  gap: clamp(20px, 3vw, 56px);
  align-items: start;
}


.vk-footer__reachlabel {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(28, 12, 40, 0.62);
}

.vk-footer__reach {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: clamp(16px, 1.5vw, 23px);
  font-weight: 600;
  letter-spacing: -0.018em;
  color: #1B0F2A;
  text-decoration: none;
  border-bottom: 2px solid rgba(27, 15, 42, 0.28);
  padding-bottom: 2px;
  transition: border-color 0.2s ease, gap 0.2s ease;
}

.vk-footer__reach:hover { border-color: #1B0F2A; gap: 15px; }

.vk-footer__reach svg { width: 0.7em; height: 0.7em; flex: 0 0 auto; }


.vk-footer__hours {
  margin: clamp(10px, 1.2vw, 16px) 0 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(28, 12, 40, 0.72);
}

.vk-footer__hours a { color: #3B1170; font-weight: 600; text-decoration: none; }

.vk-footer__hours a:hover { text-decoration: underline; }


/* SIX COLUMNS, BECAUSE THE LOCKED FOOTER HAS SIX.
 *
 * This was repeat(3, 1fr), written against the three-column footer stub
 * (Product / Resources / Company) that 97 of the 100 pages were carrying. The
 * locked footer in _locked.html has six — Integrations & Tools, Guides &
 * Compare, APIs, Product, Resources, Company — so under a 3-track grid the last
 * three wrapped onto a second row and landed under the contact block, which is
 * what made the footer read as broken rather than as six columns.
 *
 * Stepping down rather than letting it reflow on its own: six tracks need real
 * width, and 12.5px links in a 1/6 track go to two words per line well before
 * the viewport gets narrow. */
.vk-footer__cols {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 30px);
}
@media (max-width: 1180px) { .vk-footer__cols { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 700px)  { .vk-footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 420px)  { .vk-footer__cols { grid-template-columns: 1fr; } }

.vk-footer__colhead {
  margin: 0 0 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  color: #2A1840;
}

.vk-footer__cols ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 3px; }

.vk-footer__cols a {
  font-size: 12.5px;
  line-height: 1.24;
  color: #23122F;
  text-decoration: none;
  opacity: 0.86;
  transition: opacity 0.16s ease;
}

.vk-footer__cols a:hover { opacity: 1; text-decoration: underline; }



.vk-footer__cols a > svg {
  display: inline-block;
  vertical-align: -1px;
}

.vk-footer__cols a[href^="tel:"] { white-space: nowrap; }
@media (min-width: 1000px){

  .vk-footer__plate {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    column-gap: clamp(24px, 3vw, 64px);
    align-items: start;
  }

  .vk-footer__legal { grid-column: 1 / -1; }


  .vk-footer__head { grid-column: 1; grid-row: 1; }


  .vk-footer__contact { grid-column: 1; grid-row: 2; align-self: end; }

  .vk-footer__cols    { grid-column: 2; grid-row: 1 / span 2; align-self: start; }

  .vk-footer__markrow { grid-column: 1 / -1; grid-row: 3; }



  .vk-footer .vk-footer__wordmark { font-size: clamp(56px, 9.6vw, 180px); padding-inline: 0; }



  .vk-footer .vk-footer__cols ul {
    display: block;
    columns: 2;
    column-gap: clamp(14px, 1.6vw, 26px);
  }

  .vk-footer .vk-footer__cols li { break-inside: avoid; margin-bottom: 1px; }
}
@media (min-width: 1000px) and (max-width: 1560px){

  .vk-footer .vk-footer__statement { font-size: clamp(24px, 2.9vw, 40px); }

  .vk-footer .vk-footer__wordmark  { font-size: clamp(56px, 8.6vw, 150px); }

  .vk-footer .vk-footer__hours     { font-size: 12px; line-height: 1.5; }


  .vk-footer .vk-footer__plate     { padding-block: clamp(18px, 2vw, 30px) 12px; }

  .vk-footer .vk-footer__cols a    { font-size: 12px; line-height: 1.2; }
}
@media (min-width: 1000px) and (max-height: 920px){


  .vk-footer .vk-footer__plate     { row-gap: 12px; padding-top: 18px; }


  .vk-footer .vk-footer__wordmark   { font-size: clamp(48px, 7vw, 118px); }

  .vk-footer .vk-footer__cols a    { font-size: 11.5px; line-height: 1.16; }

  .vk-footer .vk-footer__colhead   { margin-bottom: 4px; }

  .vk-footer .vk-footer__statement { font-size: clamp(22px, 2.5vw, 34px); }

  .vk-footer .vk-footer__wordmark  { font-size: clamp(52px, 7.6vw, 128px); }
}
@media (max-width: 999px){

  .vk-footer .vk-footer__cols {

    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .vk-footer .vk-footer__colhead { font-size: 10px; margin-bottom: 3px; }

  .vk-footer .vk-footer__cols ul { gap: 0; }

  .vk-footer .vk-footer__cols a {
    font-size: 11.5px;

    display: block;
    line-height: 1.62;
  }

  .vk-footer .vk-footer__plate { row-gap: 12px; }

  .vk-footer .vk-footer__legal { row-gap: 8px; }

  .vk-footer .vk-footer__legaltext p { line-height: 1.45; }
}
@media (min-width: 360px) and (max-width: 999px){

  .vk-footer .vk-footer__cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 999px){

  .vk-footer .vk-footer__wash {

    transform: scale(1.06);
    background:
      radial-gradient(ellipse 96% 15% at 10%  2%,  rgba(167,139,250,0.72) 0%, rgba(167,139,250,0) 70%),
      radial-gradient(ellipse 92% 14% at 88% 17%,  rgba(56,189,248,0.62) 0%,  rgba(56,189,248,0) 68%),
      radial-gradient(ellipse 90% 13% at 14% 32%,  rgba(251,191,36,0.44) 0%,  rgba(251,191,36,0) 66%),
      radial-gradient(ellipse 94% 14% at 84% 47%,  rgba(244,63,94,0.46) 0%,   rgba(244,63,94,0) 68%),
      radial-gradient(ellipse 96% 15% at 12% 63%,  rgba(167,139,250,0.66) 0%, rgba(167,139,250,0) 70%),
      radial-gradient(ellipse 92% 14% at 86% 79%,  rgba(56,189,248,0.58) 0%,  rgba(56,189,248,0) 68%),
      radial-gradient(ellipse 94% 15% at 22% 95%,  rgba(244,63,94,0.44) 0%,   rgba(244,63,94,0) 68%),
      radial-gradient(ellipse 120% 60% at 50% 50%, rgba(255,255,255,0.34) 0%, rgba(255,255,255,0) 78%);
    filter: saturate(1.06);
  }
}



.vk-footer__markrow {
  margin: clamp(6px, 1.2vw, 16px) 0 0;
  overflow: hidden;
}

.vk-footer__wordmark {
  margin: 0;
  padding: 0;
  font-size: clamp(64px, 20.5vw, 340px);
  line-height: 0.78;
  font-weight: 700;
  letter-spacing: -0.05em;
  white-space: nowrap;
  color: #1A0E28;
  opacity: 0.9;
  user-select: none;
  pointer-events: none;
}

.vk-footer__wordmark b { color: #7C3AED; }



.vk-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px clamp(14px, 2vw, 30px);
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(4px, 0.8vw, 10px);
  padding-top: clamp(10px, 1.2vw, 16px);
  border-top: 1px solid rgba(27, 15, 42, 0.16);
  font-size: 11.5px;
  line-height: 1.7;
  color: rgba(28, 12, 40, 0.72);
}

.vk-footer__legal p { margin: 0; }

.vk-footer__legal a { color: #3B1170; text-decoration: none; }

.vk-footer__legal a:hover { text-decoration: underline; }

.vk-footer__legaltext { display: grid; gap: 1px; }



.vk-footer__social { display: flex; gap: 16px; align-items: center; }
@media (min-width: 901px){

  .vk-footer__social { padding-right: 64px; }
}

.vk-footer__social a {
  color: rgba(28, 12, 40, 0.78);
  display: inline-flex;
  transition: color 0.18s ease, transform 0.18s ease;
}

.vk-footer__social a:hover { transform: translateY(-2px); }

.vk-footer__social svg { width: 16px; height: 16px; }



.vk-footer__social a[aria-label*="X ("],
.vk-footer__social a[aria-label*="Twitter"] { color: #0B0B0B; }

.vk-footer__social a[aria-label*="LinkedIn"]  { color: #0A66C2; }

.vk-footer__social a[aria-label*="YouTube"]   { color: #FF0000; }

.vk-footer__social a[aria-label*="Instagram"] { color: #E4405F; }

.vk-footer__social a[aria-label*="Facebook"]  { color: #1877F2; }

.vk-footer__social a[aria-label*="Threads"]   { color: #0B0B0B; }

.vk-footer__social a:hover { filter: brightness(1.15) saturate(1.2); }




.vk-footer__wordmark {
  background-image:
    linear-gradient(104deg,
      transparent 34%,
      rgba(255, 255, 255, 0.88) 46%,
      rgba(255, 255, 255, 0.34) 53%,
      transparent 63%),
    linear-gradient(178deg,
      #6B4FA8 0%, #34205A 16%, #1A0E28 42%,
      #241338 62%, #4A2F7D 84%, #8A6FC4 100%);
  background-size: 260% 100%, 100% 100%;
  background-position: 150% 0, 0 0;
  background-repeat: no-repeat, no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;

  filter: drop-shadow(0 2px 1px rgba(255, 255, 255, 0.42))
          drop-shadow(0 -1px 1px rgba(26, 14, 40, 0.30));
  animation: vk-wordmark-sheen 14s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce){

  .vk-footer__wordmark { animation: none; background-position: 42% 0, 0 0; }
}



.vk-footer__wordmark b { display: none; }
@media (max-width: 900px){

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

  .vk-footer__statement { max-width: none; }
}
@media (max-width: 560px){

  .vk-footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .vk-footer__legal { justify-content: flex-start; }
}


/* ══ FOOTER + BOT CORRECTIONS — 2026-08-03 ═════════════════════════════════
 * Four defects reported off a rendered screenshot, not guessed at.
 * These are appended so the lifted block above stays a faithful copy of the
 * source and the corrections stay legible as corrections.
 * ─────────────────────────────────────────────────────────────────────────── */

/* 1. THE BLACK BAND BEHIND THE PLATE.
 *    .vk-footer paints --vk-space (#09090B) as the ground the plate floats on.
 *    On the dark pages it came from, that reads as the page continuing. On this
 *    paper ground it is a hard black bar between the last section and the
 *    footer -- a slab, not a transition. The ground becomes the page's own
 *    --paper, with a short gradient so the plate rises out of the page instead
 *    of being pasted onto it. Colour only; the plate does not move. */
html body .vk-footer{
  background:linear-gradient(180deg,
    var(--paper) 0%,
    color-mix(in srgb, var(--paper) 88%, #fff) 46%,
    #FFFFFF 100%) !important;
  padding-top:clamp(28px,4vw,56px)}

/* 2. THE WORDMARK WAS IN THE WRONG FACE.
 *    --vk-font-body was remapped to --body (DM Sans) so the footer would stop
 *    inheriting a monospace and rendering "V e d i k a". Correct for the body
 *    copy, wrong for the mark: every heading on this page is Newsreader, and a
 *    180px DM Sans wordmark under Newsreader headings is the "letters not
 *    matching" report. The mark takes the display face. */
.vk-footer .vk-footer__wordmark{
  font-family:var(--display) !important;
  font-weight:500;
  letter-spacing:-.035em}

/* 3. SOCIAL ICONS: SIX BRAND COLOURS IN ONE ROW.
 *    X black, LinkedIn blue, YouTube red, Instagram magenta, Facebook blue,
 *    Threads black -- six palettes competing in a 140px strip, crammed against
 *    the right edge under the legal lines. They are wayfinding, not logos to be
 *    reproduced: one ink, one size, real spacing, brand violet on hover only. */
.vk-footer .vk-footer__social{
  display:flex;gap:20px;align-items:center;
  padding:0;margin-left:auto}
.vk-footer .vk-footer__social a{
  display:grid;place-items:center;
  width:34px;height:34px;border-radius:999px;
  color:#4A4358;background:rgba(124,58,237,.06);
  transition:color .16s ease, background-color .16s ease, transform .16s ease}
.vk-footer .vk-footer__social a:hover{
  color:#FFFFFF;background:#7C3AED;transform:translateY(-2px)}
.vk-footer .vk-footer__social svg,
.vk-footer .vk-footer__social img{
  width:16px;height:16px;fill:currentColor;color:inherit;
  /* Some of these ship as coloured SVG with their own fill. currentColor only
     wins if the shipped fill is dropped. */
  filter:none}
.vk-footer .vk-footer__social a *{fill:currentColor !important;stroke:currentColor}

/* 4. THE SUPPORT BOT HAD A RING AROUND A RING.
 *    The launcher was a dark --space plate with an inset 1px white ring, and the
 *    badge PNG carries its own circular border -- so the logo sat inside two
 *    concentric rings on a black disc. Reported twice. The plate and both rings
 *    go: the mark itself is the button, larger, with a soft lift so it still
 *    reads as pressable. Also lifted clear of the footer credit line, which it
 *    was overlapping. */
.bot{
  background:transparent !important;
  box-shadow:0 6px 18px -6px rgba(45,18,105,.34) !important;
  width:66px;height:66px;
  right:26px;bottom:30px;
  overflow:visible;isolation:auto}
.bot::before,.bot::after{content:none !important}
.bot .bot__blob{display:none}
.bot img{
  width:62px;height:62px;
  filter:drop-shadow(0 3px 8px rgba(45,18,105,.30));
  transition:transform .2s cubic-bezier(.2,.7,.2,1)}
.bot:hover img{transform:scale(1.06)}
@media (max-width:900px){
  .bot{width:58px;height:58px;right:16px;bottom:20px}
  .bot img{width:54px;height:54px}
}
