/* ==========================================================================
   Website 1000 — uptime monitoring landing page
   Author: senior UI/UX + frontend
   Structure
   01. Tokens
   02. Base & typography
   03. Shared components
   04. Header
   05. Hero
   06. About
   07. Services
   08. How it works
   09. Pricing
   10. FAQ
   11. Support CTA
   12. Footer
   ========================================================================== */

/* ============================= 01. TOKENS ============================== */
:root {
  --w1k-primary: #351ee0;
  --w1k-primary-600: #2b17c4;
  --w1k-primary-700: #21129b;
  --w1k-primary-100: #ded9fb;
  --w1k-primary-50: #f1eefe;

  --w1k-ink: #0f1130;
  --w1k-ink-soft: #2a2d54;
  --w1k-body: #575d80;
  --w1k-muted: #8a90ad;

  --w1k-line: #e4e6f3;
  --w1k-line-soft: #eef0f9;
  --w1k-canvas: #f5f6fc;
  --w1k-surface: #ffffff;

  --w1k-up: #0f9d6c;
  --w1k-up-soft: #e6f6f0;
  --w1k-warn: #e08600;
  --w1k-warn-soft: #fdf3e3;
  --w1k-down: #e14848;
  --w1k-down-soft: #fdecec;

  --w1k-font-head: "Poppins", system-ui, sans-serif;
  --w1k-font-body: "IBM Plex Sans", system-ui, sans-serif;
  --w1k-font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --w1k-r-sm: 10px;
  --w1k-r-md: 16px;
  --w1k-r-lg: 24px;
  --w1k-r-xl: 34px;
  --w1k-r-pill: 999px;

  --w1k-shadow-sm: 0 2px 6px rgba(15, 17, 48, .05);
  --w1k-shadow-md: 0 12px 30px -14px rgba(15, 17, 48, .16);
  --w1k-shadow-lg: 0 40px 80px -40px rgba(15, 17, 48, .3);
  --w1k-shadow-brand: 0 24px 50px -26px rgba(53, 30, 224, .5);

  --w1k-section-y: 80px;
}

/* ========================= 02. BASE & TYPOGRAPHY ======================= */
* { -webkit-tap-highlight-color: transparent; }

body {
  font-family: var(--w1k-font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--w1k-body);
  background: var(--w1k-surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--w1k-font-head);
  color: var(--w1k-ink);
  font-weight: 600;
  letter-spacing: -.02em;
  margin: 0;
}

p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }

a { color: var(--w1k-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--w1k-primary-700); }

:focus-visible {
  outline: 3px solid var(--w1k-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.container { max-width: 1200px; }

.w1k-skip {
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  z-index: 2000;
  background: var(--w1k-ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 var(--w1k-r-sm) var(--w1k-r-sm);
  transition: top .2s ease;
}
.w1k-skip:focus { top: 0; color: #fff; }

/* Heading scale */
.w1k-h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.85rem);
  line-height: 1.16;
}
.w1k-h4 { font-size: 1.3rem; line-height: 1.35; }
.w1k-h5 { font-size: 1.075rem; line-height: 1.4; margin-bottom: 8px; }

.w1k-lead {
  font-size: 1.0625rem;
  color: var(--w1k-body);
  max-width: 62ch;
}
.w1k-body-sm {
  font-size: .9375rem;
  line-height: 1.68;
  color: var(--w1k-body);
  max-width: 58ch;
}

.w1k-label {
  font-family: var(--w1k-font-head);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--w1k-primary);
  margin-bottom: 10px;
}

.w1k-section-head { margin-bottom: 56px; text-align: center; }
.w1k-section-head .w1k-h2 { margin: 0 auto; }
.w1k-section-head .w1k-lead { margin: 18px auto 0; }

/* Highlighted phrase in About heading */
.w1k-mark {
  display: inline-block;
  background: var(--w1k-primary);
  color: #fff;
  padding: 0 .34em .12em;
  border-radius: 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Inline icon chip inside headings */
.w1k-inline-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.05em;
  height: 1.05em;
  border-radius: .3em;
  background: var(--w1k-primary);
  color: #fff;
  vertical-align: -.14em;
  margin: 0 .06em;
  box-shadow: var(--w1k-shadow-brand);
}
.w1k-inline-chip svg { width: 68%; height: 68%; }
.w1k-inline-chip--sm { border-radius: .26em; }

/* Live dot */
.w1k-dot-live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--w1k-up);
  box-shadow: 0 0 0 3px rgba(15, 157, 108, .18);
  flex: 0 0 auto;
}

/* ======================= 03. SHARED COMPONENTS ========================= */
.w1k-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--w1k-font-head);
  font-size: .9375rem;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: var(--w1k-r-pill);
  border: 1px solid transparent;
  transition: transform .18s ease, background-color .18s ease,
              color .18s ease, box-shadow .18s ease, border-color .18s ease;
  cursor: pointer;
}
.w1k-btn:hover { transform: translateY(-2px); }
.w1k-btn:active { transform: translateY(0); }

.w1k-btn-dark { background: var(--w1k-ink); color: #fff; }
.w1k-btn-dark:hover { background: #1b1e46; color: #fff; box-shadow: var(--w1k-shadow-md); }

.w1k-btn-primary { background: var(--w1k-primary); color: #fff; box-shadow: var(--w1k-shadow-brand); }
.w1k-btn-primary:hover { background: var(--w1k-primary-600); color: #fff; }

.w1k-btn-ghost {
  background: var(--w1k-surface);
  color: var(--w1k-ink);
  border-color: var(--w1k-line);
}
.w1k-btn-ghost:hover { border-color: var(--w1k-primary); color: var(--w1k-primary); }

.w1k-btn-light { background: #fff; color: var(--w1k-ink); }
.w1k-btn-light:hover { background: #fff; color: var(--w1k-primary); box-shadow: 0 18px 34px -18px rgba(0, 0, 0, .55); }

.w1k-btn-lg { padding: 16px 30px; font-size: 1rem; }
.w1k-btn-block { display: flex; width: 100%; }

.w1k-btn-radar {
  display: inline-flex;
  width: 18px; height: 18px;
  color: currentColor;
  opacity: .8;
}
.w1k-btn-radar svg { width: 100%; height: 100%; }

.w1k-link {
  font-family: var(--w1k-font-head);
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* status chips reused across sections */
.w1k-chip-up,
.w1k-pill-down {
  font-family: var(--w1k-font-mono);
  font-size: .6875rem;
  padding: 4px 9px;
  border-radius: 6px;
  white-space: nowrap;
}
.w1k-chip-up { background: var(--w1k-up-soft); color: var(--w1k-up); }
.w1k-pill-down { background: var(--w1k-down-soft); color: var(--w1k-down); }

/* ============================= 04. HEADER ============================== */
.w1k-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding-top: 22px;
  transition: padding-top .25s ease;
}
.w1k-header.is-stuck { padding-top: 10px; }

.w1k-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid var(--w1k-line-soft);
  border-radius: var(--w1k-r-pill);
  padding: 10px 12px 10px 20px;
  box-shadow: var(--w1k-shadow-sm);
  transition: box-shadow .25s ease, background-color .25s ease;
}
.w1k-header.is-stuck .w1k-nav {
  box-shadow: var(--w1k-shadow-md);
  background: rgba(255, 255, 255, .95);
}

.w1k-brand { display: inline-flex; align-items: center; gap: 10px; max-width: 200px;}
.w1k-brand-mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--w1k-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.w1k-brand-mark svg { width: 20px; height: 20px; }
.w1k-brand-text {
  font-family: var(--w1k-font-head);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--w1k-ink);
  letter-spacing: -.02em;
}
.w1k-brand-text span { color: var(--w1k-primary); }

.w1k-nav-menu { display: flex; align-items: center; gap: 28px; }
.w1k-nav-list { display: flex; align-items: center; gap: 26px; }
.w1k-nav-list a {
  font-size: .9375rem;
  color: var(--w1k-ink-soft);
  position: relative;
  padding: 4px 0;
}
.w1k-nav-list a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -3px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--w1k-primary);
  transform: translate(-50%, 4px);
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
}
.w1k-nav-list a:hover { color: var(--w1k-primary); }
.w1k-nav-list a.is-current { color: var(--w1k-ink); font-weight: 500; }
.w1k-nav-list a.is-current::after { opacity: 1; transform: translate(-50%, 0); }

.w1k-nav-cta { padding: 11px 22px; }

.w1k-nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--w1k-line);
  background: #fff;
  border-radius: 12px;
  padding: 0;
  position: relative;
}
.w1k-nav-toggle span {
  display: block;
  width: 17px; height: 1.8px;
  margin: 4px auto;
  background: var(--w1k-ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.w1k-nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.w1k-nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

/* ============================== 05. HERO =============================== */

.w1k-hero {
  position: relative;
  padding: 150px 0 74px;
  background:
    radial-gradient(80% 90% at 88% 0%, #efecfe 0%, rgba(255, 255, 255, 0) 62%),
    radial-gradient(60% 70% at 0% 30%, #eef7f3 0%, rgba(255, 255, 255, 0) 58%),
    var(--w1k-surface);
  overflow: hidden;
}
/* faint probe grid, kept off the copy so nothing competes with the headline */
.w1k-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(53, 30, 224, .1) 1px, transparent 1px) 0 0 / 72px 100%,
    linear-gradient(to bottom, rgba(53, 30, 224, .1) 1px, transparent 1px) 0 0 / 100% 72px;
  -webkit-mask-image: linear-gradient(100deg, transparent 40%, #000 96%);
  mask-image: linear-gradient(100deg, transparent 40%, #000 96%);
  pointer-events: none;
}
.w1k-hero .container { position: relative; z-index: 1; }

.w1k-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--w1k-line);
  border-radius: var(--w1k-r-pill);
  padding: 7px 16px 7px 13px;
  font-size: .8125rem;
  color: var(--w1k-ink-soft);
  box-shadow: var(--w1k-shadow-sm);
  margin-bottom: 24px;
}

.w1k-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 40px;
}

/* ------------------------------- copy -------------------------------- */
.w1k-hero-copy { max-width: 560px; }

.w1k-hero-title {
  font-size: clamp(2.4rem, 4.4vw, 3.85rem);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -.035em;
}
.w1k-hero-accent { color: var(--w1k-primary); }

.w1k-inline-avatars {
  display: inline-flex;
  vertical-align: -.16em;
  margin: 0 .1em 0 .04em;
}
.w1k-ia {
  position: relative;
  width: .88em; height: .88em;
  border-radius: 50%;
  overflow: hidden;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(150deg, var(--w1k-primary), #7f6bff);
  border: 3px solid #fff;
  box-shadow: var(--w1k-shadow-md);
}
/* em on width resolves against this element's own font-size, so the initials
   are scaled down on a child instead of on .w1k-ia itself */
.w1k-ia i {
  font-family: var(--w1k-font-body);
  font-style: normal;
  font-size: .2em;
  font-weight: 600;
  letter-spacing: 0;
  color: #fff;
}
.w1k-ia + .w1k-ia { margin-left: -.26em; }
/* the initials sit underneath, so a blocked photo still reads as an avatar */
.w1k-ia img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.w1k-hero-sub {
  font-size: 1.0625rem;
  max-width: 50ch;
  margin-top: 22px;
}

.w1k-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.w1k-btn-badge {
  display: inline-grid;
  place-items: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  margin: -4px -10px -4px 0;
}
.w1k-btn-badge svg { width: 15px; height: 15px; }

.w1k-ticks {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, auto));
  justify-content: start;
  gap: 12px 34px;
  margin-top: 34px;
}
.w1k-ticks li {
  position: relative;
  padding-left: 26px;
  font-size: .9375rem;
  color: var(--w1k-ink-soft);
}
.w1k-ticks li::before {
  content: "";
  position: absolute;
  left: 2px; top: 9px;
  width: 11px; height: 6px;
  border: 2px solid var(--w1k-up);
  border-top: 0; border-right: 0;
  transform: rotate(-45deg);
}

/* ------------------------------ collage ------------------------------ */
.w1k-collage {
  position: relative;
  height: 574px;
}
.w1k-collage > * { position: absolute; }

.w1k-c-card {
  background: var(--w1k-surface);
  border: 1px solid var(--w1k-line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--w1k-shadow-md);
}

.w1k-c-label {
  font-family: var(--w1k-font-head);
  font-size: .8125rem;
  font-weight: 500;
  color: var(--w1k-ink);
}
.w1k-c-value {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--w1k-font-head);
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--w1k-ink);
  letter-spacing: -.035em;
  line-height: 1.1;
  margin-top: 6px;
}
.w1k-c-value small {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--w1k-muted);
  letter-spacing: 0;
  margin-left: 2px;
}
.w1k-c-note { font-size: .75rem; color: var(--w1k-muted); margin-top: 2px; }

/* photo tile */
.w1k-c-photo {
  left: 2%;
  top: 0;
  width: 200px;
  height: 208px;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(150deg, #2b17c4, #7f6bff);
  box-shadow: var(--w1k-shadow-lg);
}
.w1k-c-photo img { width: 100%; height: 100%; object-fit: cover; }
.w1k-c-photo.is-fallback img { display: none; }

/* response time */
.w1k-c-perf { left: 46%; top: 1%; width: 292px; }
.w1k-c-spark { width: 100%; height: 66px; margin-top: 10px; display: block; }

/* check queue */
.w1k-c-queue { left: 0; top: 33%; width: 306px; }
.w1k-c-queue-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.w1k-c-count {
  font-family: var(--w1k-font-mono);
  font-size: .625rem;
  color: var(--w1k-primary);
  background: var(--w1k-primary-50);
  border-radius: var(--w1k-r-pill);
  padding: 3px 9px;
}
.w1k-c-group {
  font-family: var(--w1k-font-mono);
  font-size: .5625rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--w1k-muted);
  margin: 16px 0 8px;
}
.w1k-c-rows { display: grid; gap: 8px; }
.w1k-c-rows li {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--w1k-canvas);
  border-radius: 10px;
  padding: 9px 11px;
}
.w1k-c-badge {
  font-family: var(--w1k-font-mono);
  font-size: .5625rem;
  border-radius: 5px;
  padding: 3px 6px;
  flex: 0 0 auto;
}
.w1k-c-badge.is-up { background: var(--w1k-up-soft); color: var(--w1k-up); }
.w1k-c-badge.is-down { background: var(--w1k-down-soft); color: var(--w1k-down); }
.w1k-c-host {
  font-size: .75rem;
  color: var(--w1k-ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.w1k-c-ms {
  margin-left: auto;
  font-family: var(--w1k-font-mono);
  font-size: .625rem;
  color: var(--w1k-muted);
  flex: 0 0 auto;
}
.w1k-c-ms.is-down { color: var(--w1k-down); }
/* search panel */
.w1k-c-search {
  left: 52%;
  top: 38%;
  width: 300px;
  background: var(--w1k-primary);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--w1k-shadow-brand);
}
.w1k-c-search-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  color: rgba(255, 255, 255, .8);
}
.w1k-c-search-top svg { width: 15px; height: 15px; }
.w1k-c-query {
  font-family: var(--w1k-font-head);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.02em;
  margin: 10px 0 14px;
  display: flex;
  align-items: center;
}
.w1k-c-query .w1k-caret { background: #fff; height: 19px; margin-left: 5px; }
.w1k-c-results { display: grid; gap: 7px; }
.w1k-c-results li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .14);
  border-radius: 9px;
  padding: 8px 11px;
  font-family: var(--w1k-font-mono);
  font-size: .625rem;
}
.w1k-c-results b {
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  flex: 0 0 auto;
}
.w1k-c-results span {
  color: rgba(255, 255, 255, .62);
  margin-left: auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.w1k-c-results .is-meta {
  background: none;
  padding: 2px 11px;
  color: rgba(255, 255, 255, .58);
}

/* monitors watched */
.w1k-c-stat { left: 4%; top: 74%; width: 258px; }
.w1k-mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 44px;
  margin-top: 14px;
}
.w1k-mini-bars i {
  flex: 1 1 0;
  height: var(--h);
  border-radius: 3px;
  background: var(--w1k-primary-100);
}
.w1k-mini-bars i:nth-child(3n) { background: var(--w1k-primary); }

/* trust pill */
.w1k-c-pill {
  left: 62%;
  top: 87%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--w1k-line);
  border-radius: var(--w1k-r-pill);
  padding: 11px 18px;
  font-size: .8125rem;
  color: var(--w1k-ink-soft);
  white-space: nowrap;
  box-shadow: var(--w1k-shadow-md);
}
.w1k-c-pill svg { width: 16px; height: 16px; color: var(--w1k-primary); }

/* one orchestrated entrance, replayed only on load */
.w1k-anim [data-hero-step] {
  opacity: 0;
  transform: translateY(16px);
}
.w1k-anim.is-ready [data-hero-step] {
  animation: w1k-rise .8s cubic-bezier(.16, .84, .34, 1) forwards;
}
.w1k-anim.is-ready [data-hero-step="1"] { animation-delay: .05s; }
.w1k-anim.is-ready [data-hero-step="2"] { animation-delay: .15s; }
.w1k-anim.is-ready [data-hero-step="3"] { animation-delay: .28s; }
.w1k-anim.is-ready [data-hero-step="4"] { animation-delay: .38s; }
.w1k-anim.is-ready [data-hero-step="5"] { animation-delay: .46s; }
.w1k-anim.is-ready [data-hero-step="6"] { animation-delay: .3s; }
@keyframes w1k-rise {
  to { opacity: 1; transform: translateY(0); }
}
/* collage cards settle in after the panel itself arrives */
.w1k-anim.is-ready .w1k-collage > * {
  animation: w1k-settle .9s cubic-bezier(.16, .84, .34, 1) both;
}
.w1k-anim.is-ready .w1k-collage > :nth-child(1) { animation-delay: .44s; }
.w1k-anim.is-ready .w1k-collage > :nth-child(2) { animation-delay: .52s; }
.w1k-anim.is-ready .w1k-collage > :nth-child(3) { animation-delay: .60s; }
.w1k-anim.is-ready .w1k-collage > :nth-child(4) { animation-delay: .68s; }
.w1k-anim.is-ready .w1k-collage > :nth-child(5) { animation-delay: .76s; }
.w1k-anim.is-ready .w1k-collage > :nth-child(6) { animation-delay: .84s; }
@keyframes w1k-settle {
  from { opacity: 0; transform: translateY(14px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ============================== 06. ABOUT ============================== */
.w1k-about { padding: var(--w1k-section-y) 0; }

.w1k-about-visual { position: relative; padding: 0 0 40px 0; }

.w1k-about-blob {
  position: absolute;
  left: 0;
  top: -22px;
  width: 84%;
  height: calc(100% - 40px);
  border-radius: 210px 210px 22px 22px;
  background: linear-gradient(160deg, var(--w1k-primary) 0%, #5b45ff 60%, #8f7dff 100%);
  z-index: 0;
}
.w1k-arch {
  position: relative;
  z-index: 1;
  margin: 0 0 0 8%;
  width: 84%;
  aspect-ratio: 3 / 4;
  border-radius: 210px 210px 22px 22px;
  overflow: hidden;
  background: var(--w1k-primary-50);
  box-shadow: var(--w1k-shadow-lg);
}
.w1k-arch img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.w1k-arch.is-fallback {
  background: linear-gradient(150deg, #2b17c4, #7f6bff);
}
.w1k-arch.is-fallback img { display: none; }

.w1k-about-stat {
  position: absolute;
  z-index: 2;
  right: -2%;
  bottom: 0;
  width: 232px;
  background: #fff;
  border: 1px solid var(--w1k-line);
  border-radius: var(--w1k-r-md);
  padding: 18px;
  box-shadow: var(--w1k-shadow-md);
}
.w1k-about-stat-num {
  font-family: var(--w1k-font-head);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--w1k-ink);
  letter-spacing: -.03em;
  line-height: 1;
}
.w1k-about-stat-label {
  font-size: .75rem;
  line-height: 1.5;
  color: var(--w1k-muted);
  margin-top: 6px;
}
.w1k-spark { width: 100%; height: 24px; color: var(--w1k-up); margin-top: 10px; }

.w1k-about .w1k-lead { margin-top: 20px; }
.w1k-about-cols { margin: 34px 0 6px; }
.w1k-mini-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--w1k-primary-50);
  color: var(--w1k-primary);
  margin-bottom: 14px;
}
.w1k-mini-icon svg { width: 22px; height: 22px; }
.w1k-about-cols .w1k-body-sm { max-width: 34ch; }

.w1k-about .w1k-btn-primary { margin-top: 26px; }

/* ============================= 07. SERVICES ============================ */
.w1k-services {
  padding: var(--w1k-section-y) 0;
  background: var(--w1k-canvas);
}

.w1k-svc {
  height: 100%;
  background: var(--w1k-surface);
  border: 1px solid var(--w1k-line);
  border-radius: var(--w1k-r-lg);
  padding: 32px 32px 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.w1k-svc .w1k-body-sm { margin-top: 10px; }
.w1k-svc-visual {
  margin-top: 26px;
  padding-top: 4px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* 1 — uptime feed */
.w1k-feed { display: grid; gap: 10px; padding-bottom: 32px; }
.w1k-feed li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--w1k-line);
  border-radius: 14px;
  padding: 13px 15px;
  box-shadow: var(--w1k-shadow-sm);
}
.w1k-feed li.is-alert { border-color: #f6c9c9; background: #fffafa; }
.w1k-feed-icon {
  width: 28px; height: 28px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.w1k-feed-icon svg { width: 17px; height: 17px; }
.w1k-feed-icon--up { background: var(--w1k-up-soft); color: var(--w1k-up); }
.w1k-feed-icon--down { background: var(--w1k-down-soft); color: var(--w1k-down); }
.w1k-feed-body { display: grid; line-height: 1.35; }
.w1k-feed-body b {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--w1k-ink);
}
.w1k-feed-body em {
  font-family: var(--w1k-font-mono);
  font-style: normal;
  font-size: .6875rem;
  color: var(--w1k-muted);
}
.w1k-feed-time {
  margin-left: auto;
  font-family: var(--w1k-font-mono);
  font-size: .625rem;
  color: var(--w1k-muted);
}

/* 2 — performance chart */
.w1k-chart {
  background: #fff;
  border: 1px solid var(--w1k-line);
  border-radius: 16px 16px 0 0;
  border-bottom: 0;
  padding: 20px 20px 0;
  box-shadow: var(--w1k-shadow-sm);
}
.w1k-chart-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.w1k-chart-value {
  font-family: var(--w1k-font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--w1k-ink);
  letter-spacing: -.03em;
}
.w1k-chart-value small { font-size: .75rem; color: var(--w1k-muted); margin-left: 3px; }
.w1k-chart-svg { width: 100%; height: 118px; margin-top: 6px; display: block; }
.w1k-chart-fill { fill: rgba(53, 30, 224, .07); }
.w1k-chart-line { stroke: var(--w1k-primary); fill: none; }
.w1k-chart-line-2 { stroke: #b3aae8; fill: none; }
.w1k-legend {
  display: flex;
  gap: 18px;
  padding: 12px 0 16px;
  border-top: 1px solid var(--w1k-line-soft);
}
.w1k-legend li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .75rem;
  color: var(--w1k-muted);
}
.w1k-key { width: 14px; height: 3px; border-radius: 2px; }
.w1k-key--a { background: var(--w1k-primary); }
.w1k-key--b { background: #b3aae8; }

/* 3 — alert card */
.w1k-alert-card {
  background: #fff;
  border: 1px solid var(--w1k-line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--w1k-shadow-md);
}
.w1k-alert-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--w1k-line-soft);
}
.w1k-alert-avatar {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--w1k-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--w1k-font-head);
  font-size: .6875rem;
  font-weight: 600;
}
.w1k-alert-head span { display: grid; line-height: 1.3; }
.w1k-alert-head b { font-size: .8125rem; font-weight: 500; color: var(--w1k-ink); }
.w1k-alert-head em { font-style: normal; font-size: .6875rem; color: var(--w1k-muted); }
.w1k-alert-now {
  margin-left: auto;
  font-family: var(--w1k-font-mono);
  font-size: .625rem;
  color: var(--w1k-muted);
}
.w1k-alert-msg {
  font-size: .8125rem;
  line-height: 1.6;
  color: var(--w1k-ink-soft);
  padding: 13px 0;
}
.w1k-alert-msg .w1k-pill-down { margin-right: 6px; vertical-align: 1px; }
.w1k-alert-msg b { font-family: var(--w1k-font-mono); font-weight: 500; }
.w1k-alert-actions { display: flex; gap: 8px; }
.w1k-alert-btn {
  font-size: .75rem;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid var(--w1k-line);
  color: var(--w1k-ink-soft);
}
.w1k-alert-btn.is-primary {
  background: var(--w1k-primary);
  border-color: var(--w1k-primary);
  color: #fff;
}
.w1k-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 0 32px;
}
.w1k-channels li {
  font-size: .75rem;
  color: var(--w1k-body);
  background: var(--w1k-canvas);
  border: 1px solid var(--w1k-line);
  border-radius: var(--w1k-r-pill);
  padding: 5px 13px;
}

/* 4 — uptime report */
.w1k-report {
  background: #fff;
  border: 1px solid var(--w1k-line);
  border-radius: 16px 16px 0 0;
  border-bottom: 0;
  padding: 20px 20px 22px;
  box-shadow: var(--w1k-shadow-sm);
}
.w1k-report-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.w1k-report-head span:first-child { display: grid; line-height: 1.35; }
.w1k-report-head b {
  font-family: var(--w1k-font-head);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--w1k-ink);
}
.w1k-report-head em { font-style: normal; font-size: .75rem; color: var(--w1k-muted); }
.w1k-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 96px;
  margin: 20px 0 12px;
}
.w1k-bars span {
  flex: 1 1 0;
  height: var(--h);
  min-height: 8px;
  border-radius: 4px;
  background: var(--w1k-up);
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform .6s cubic-bezier(.2, .8, .3, 1);
}
.w1k-bars.is-drawn span { transform: scaleY(1); }
.w1k-bars span.is-warn { background: var(--w1k-warn); }
.w1k-bars span.is-down { background: var(--w1k-down); }
.w1k-report-foot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--w1k-line-soft);
  font-size: .6875rem;
  color: var(--w1k-muted);
}
.w1k-report-foot span:nth-child(2) { text-align: center; }

/* ========================== 08. HOW IT WORKS =========================== */
.w1k-how { padding: var(--w1k-section-y) 0; }

.w1k-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  counter-reset: w1k-step;
}
.w1k-step {
  background: var(--w1k-surface);
  border: 1px solid var(--w1k-line);
  border-radius: var(--w1k-r-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
}
.w1k-step--tint {
  background: var(--w1k-primary-50);
  border-color: var(--w1k-primary-100);
}
.w1k-step-visual {
  background: var(--w1k-canvas);
  border: 1px solid var(--w1k-line-soft);
  border-radius: var(--w1k-r-md);
  padding: 20px 18px;
  height: 214px;
  flex: 0 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  margin-bottom: 22px;
}
.w1k-step--tint .w1k-step-visual {
  background: #fff;
  border-color: var(--w1k-primary-100);
}
.w1k-step-visual-title {
  font-family: var(--w1k-font-head);
  font-size: .8125rem;
  font-weight: 600;
  color: var(--w1k-ink);
  text-align: center;
}
.w1k-step-num {
  font-family: var(--w1k-font-mono);
  font-size: .6875rem;
  color: var(--w1k-primary);
  display: block;
  margin-bottom: 8px;
}
.w1k-step-body .w1k-body-sm { max-width: 32ch; }

.w1k-input-mock {
  background: #fff;
  border: 1px solid var(--w1k-line);
  border-radius: 10px;
  padding: 11px 13px;
  box-shadow: var(--w1k-shadow-sm);
}
.w1k-input-mock-url {
  font-family: var(--w1k-font-mono);
  font-size: .75rem;
  color: var(--w1k-muted);
  display: inline-flex;
  align-items: center;
}
.w1k-input-mock-url b { color: var(--w1k-ink); font-weight: 500; }
.w1k-caret {
  width: 1.5px; height: 14px;
  background: var(--w1k-primary);
  margin-left: 3px;
  animation: w1k-blink 1.1s steps(2, start) infinite;
}
@keyframes w1k-blink { 50% { opacity: 0; } }

.w1k-mock-btn {
  align-self: flex-start;
  font-family: var(--w1k-font-head);
  font-size: .75rem;
  font-weight: 500;
  color: var(--w1k-primary);
  background: #fff;
  border: 1px solid var(--w1k-primary-100);
  border-radius: var(--w1k-r-pill);
  padding: 8px 16px;
}
.w1k-mock-btn.is-solid {
  background: var(--w1k-primary);
  border-color: var(--w1k-primary);
  color: #fff;
}

.w1k-config { display: grid; gap: 8px; }
.w1k-config li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--w1k-line);
  border-radius: 9px;
  padding: 8px 11px;
  font-size: .75rem;
  color: var(--w1k-muted);
}
.w1k-config b {
  font-family: var(--w1k-font-mono);
  font-size: .6875rem;
  font-weight: 500;
  color: var(--w1k-ink);
}

.w1k-verify { display: grid; gap: 9px; }
.w1k-verify li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  color: var(--w1k-ink-soft);
  background: var(--w1k-canvas);
  border-radius: 9px;
  padding: 9px 11px;
}
.w1k-verify i {
  width: 16px; height: 16px;
  border-radius: 50%;
  flex: 0 0 auto;
  position: relative;
}
.w1k-verify .is-done i { background: var(--w1k-up); }
.w1k-verify .is-done i::after {
  content: "";
  position: absolute;
  left: 5px; top: 3.5px;
  width: 3.5px; height: 6px;
  border: 1.5px solid #fff;
  border-top: 0; border-left: 0;
  transform: rotate(42deg);
}
.w1k-verify .is-open { background: var(--w1k-down-soft); color: #a92f2f; }
.w1k-verify .is-open i { background: var(--w1k-down); }

.w1k-phone {
  background: var(--w1k-ink);
  border-radius: 14px;
  padding: 14px;
  color: #fff;
  box-shadow: var(--w1k-shadow-md);
}
.w1k-phone-time {
  font-family: var(--w1k-font-mono);
  font-size: .625rem;
  color: rgba(255, 255, 255, .55);
}
.w1k-phone-msg {
  display: grid;
  gap: 3px;
  font-size: .75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .72);
  margin-top: 6px;
}
.w1k-phone-msg b { font-size: .8125rem; font-weight: 500; color: #fff; }

/* ============================= 09. PRICING ============================= */
.w1k-pricing {
  padding: var(--w1k-section-y) 0;
  background: var(--w1k-canvas);
}

.w1k-toggle {
  display: inline-flex;
  gap: 4px;
  background: #fff;
  border: 1px solid var(--w1k-line);
  border-radius: var(--w1k-r-pill);
  padding: 5px;
  margin-top: 28px;
  box-shadow: var(--w1k-shadow-sm);
}
.w1k-toggle button {
  font-family: var(--w1k-font-head);
  font-size: .875rem;
  font-weight: 500;
  color: var(--w1k-body);
  background: transparent;
  border: 0;
  border-radius: var(--w1k-r-pill);
  padding: 9px 20px;
  transition: background-color .2s ease, color .2s ease;
}
.w1k-toggle button span { color: var(--w1k-up); font-size: .8125rem; }
.w1k-toggle button.is-active { background: var(--w1k-ink); color: #fff; }
.w1k-toggle button.is-active span { color: #7ee2bb; }

.w1k-plan {
  height: 100%;
  background: var(--w1k-surface);
  border: 1px solid var(--w1k-line);
  border-radius: var(--w1k-r-lg);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}
.w1k-plan--featured {
  position: relative;
  background: var(--w1k-ink);
  border-color: var(--w1k-ink);
  box-shadow: var(--w1k-shadow-lg);
}
.w1k-plan-flag {
  position: absolute;
  top: -13px;
  left: 30px;
  font-family: var(--w1k-font-head);
  font-size: .75rem;
  font-weight: 500;
  color: #fff;
  background: var(--w1k-primary);
  border-radius: var(--w1k-r-pill);
  padding: 5px 14px;
  box-shadow: var(--w1k-shadow-brand);
}

.w1k-plan-head { padding-bottom: 22px; border-bottom: 1px solid var(--w1k-line); }
.w1k-plan--featured .w1k-plan-head { border-color: rgba(255, 255, 255, .14); }
.w1k-plan-name { font-size: 1.25rem; }
.w1k-plan-desc { font-size: .875rem; color: var(--w1k-muted); margin-top: 6px; max-width: 30ch; }
.w1k-plan-price {
  font-family: var(--w1k-font-head);
  font-size: 3rem;
  font-weight: 600;
  color: var(--w1k-ink);
  letter-spacing: -.04em;
  line-height: 1;
  margin-top: 22px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.w1k-cur { font-size: 1.5rem; font-weight: 500; }
.w1k-plan-price small {
  font-family: var(--w1k-font-body);
  font-size: .875rem;
  font-weight: 400;
  color: var(--w1k-muted);
  letter-spacing: 0;
  margin-left: 6px;
}
.w1k-plan--featured .w1k-plan-name,
.w1k-plan--featured .w1k-plan-price { color: #fff; }
.w1k-plan--featured .w1k-plan-desc,
.w1k-plan--featured .w1k-plan-price small { color: rgba(255, 255, 255, .62); }

.w1k-plan-list { padding: 24px 0 30px; display: grid; gap: 12px; flex: 1 1 auto; }
.w1k-plan-list li {
  position: relative;
  padding-left: 30px;
  font-size: .9375rem;
  color: var(--w1k-body);
}
.w1k-plan-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--w1k-primary-50);
}
.w1k-plan-list li::after {
  content: "";
  position: absolute;
  left: 6px; top: 8.5px;
  width: 4px; height: 7px;
  border: 1.7px solid var(--w1k-primary);
  border-top: 0; border-left: 0;
  transform: rotate(42deg);
}
.w1k-plan--featured .w1k-plan-list li { color: rgba(255, 255, 255, .78); }
.w1k-plan--featured .w1k-plan-list li::before { background: rgba(255, 255, 255, .12); }
.w1k-plan--featured .w1k-plan-list li::after { border-color: #a99bff; }

.w1k-pricing-note {
  text-align: center;
  font-size: .875rem;
  color: var(--w1k-muted);
  margin-top: 42px;
}

/* =============================== 10. FAQ ============================== */
.w1k-faq { padding: var(--w1k-section-y) 0; }
@media (min-width: 992px) {
  .w1k-faq .col-lg-8 { padding-left: 40px; }
  .w1k-about-visual { padding-right: 16px; }
}
.w1k-faq-aside { margin: 20px 0 22px; max-width: 40ch; }

.w1k-acc .accordion-item {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--w1k-line);
}
.w1k-acc .accordion-item:last-child { border-bottom: 1px solid var(--w1k-line); }

.w1k-acc .accordion-button {
  font-family: var(--w1k-font-head);
  font-size: 1.2625rem;
  font-weight: 500;
  color: var(--w1k-ink);
  background: transparent;
  padding: 24px 0;
  box-shadow: none;
  border-radius: 0;
  line-height: 1.45;
}
.w1k-acc .accordion-button:not(.collapsed) { color: var(--w1k-primary); }
.w1k-acc .accordion-button:focus { box-shadow: none; }
.w1k-acc .accordion-button::after {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  margin-left: auto;
  border: 1px solid var(--w1k-line);
  border-radius: 50%;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%230f1130' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 6.25 8 10.5l4.5-4.25'/%3E%3C/svg%3E");
  background-size: 13px 13px;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
}
.w1k-acc .accordion-button:not(.collapsed)::after {
  border-color: var(--w1k-primary-100);
  background-color: var(--w1k-primary-50);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23351ee0' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 6.25 8 10.5l4.5-4.25'/%3E%3C/svg%3E");
  transform: rotate(180deg);
}
.w1k-acc .accordion-body {
  padding: 0 12% 26px 0;
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--w1k-body);
}

/* =========================== 11. SUPPORT CTA =========================== */
.w1k-support { padding: 0 0 var(--w1k-section-y); }

.w1k-support-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
  background: var(--w1k-ink);
  border-radius: var(--w1k-r-xl);
  overflow: hidden;
  box-shadow: var(--w1k-shadow-lg);
}
.w1k-support-copy {
  padding: 62px 20px 62px 62px;
  position: relative;
  z-index: 2;
}
.w1k-support-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.w1k-support-pills span {
  font-size: .8125rem;
  color: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--w1k-r-pill);
  padding: 6px 15px;
}
.w1k-support .w1k-h2 { color: #fff; }
.w1k-support-text {
  color: rgba(255, 255, 255, .68);
  font-size: 1rem;
  max-width: 44ch;
  margin-top: 20px;
}
.w1k-support-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}
.w1k-social-proof { display: flex; align-items: center; gap: 12px; }
.w1k-avatars { display: inline-flex; }
.w1k-avatars i {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--w1k-font-head);
  font-style: normal;
  font-size: .625rem;
  font-weight: 600;
  color: #fff;
  border: 2px solid var(--w1k-ink);
  margin-left: -10px;
}
.w1k-avatars i:first-child { margin-left: 0; background: #4a32f0; }
.w1k-avatars i:nth-child(2) { background: #6a54ff; }
.w1k-avatars i:nth-child(3) { background: #2b17c4; }
.w1k-avatars i:nth-child(4) { background: #8474ff; }
.w1k-social-text { font-size: .8125rem; color: rgba(255, 255, 255, .6); }

.w1k-support-photo {
  position: relative;
  margin: 0;
  min-height: 380px;
  background: linear-gradient(140deg, #2b17c4, #7f6bff);
}
.w1k-support-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
}
.w1k-support-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--w1k-ink) 0%, rgba(15, 17, 48, .55) 22%, rgba(15, 17, 48, 0) 62%);
}

/* ============================== 12. FOOTER ============================= */
.w1k-footer {
  background: var(--w1k-canvas);
  border-top: 1px solid var(--w1k-line);
  padding: 76px 0 30px;
}
.w1k-brand--footer { margin-bottom: 18px; }
.w1k-footer-text {
  font-size: .9375rem;
  color: var(--w1k-body);
  max-width: 36ch;
}
.w1k-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  background: #fff;
  border: 1px solid var(--w1k-line);
  border-radius: var(--w1k-r-pill);
  padding: 7px 15px;
  font-size: .8125rem;
  color: var(--w1k-ink-soft);
}
.w1k-footer-title {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--w1k-ink);
  margin-bottom: 16px;
}
.w1k-footer-list { display: grid; gap: 11px; }
.w1k-footer-list a { font-size: .9375rem; color: var(--w1k-body); }
.w1k-footer-list a:hover { color: var(--w1k-primary); }

.w1k-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 60px;
  padding-top: 26px;
  border-top: 1px solid var(--w1k-line);
  font-size: .95rem;
  color: var(--w1k-muted);
}
.w1k-footer-bottom ul { display: flex; gap: 22px; }
.w1k-footer-bottom a { color: var(--w1k-muted); }
.w1k-footer-bottom a:hover { color: var(--w1k-primary); }


/* ==========================================================================
   Website 1000 — inner page layer
   Loaded only on inner pages, after style.css and before responsive.css.
   13. Breadcrumb banner
   14. Page body / prose
   15. Side rail
   16. Inner page breakpoints
   ========================================================================== */

/* ======================= 13. BREADCRUMB BANNER ========================= */

/* On the landing page the nav floats over a gradient hero. Inner pages open
   on a light banner instead, so the bar carries its own hairline. */
.w1k-header.is-solid .w1k-nav { border-color: var(--w1k-line); }

.w1k-banner {
  position: relative;
  padding: 156px 0 62px;
  background: var(--w1k-canvas);
  border-bottom: 1px solid var(--w1k-line);
  overflow: hidden;
  text-align: center;
}
.w1k-banner .container { position: relative; z-index: 1; }

/* the probe-grid motif from the hero, quietened down to a texture */
.w1k-banner-grid {
  position: absolute;
  inset: 0 0 auto;
  height: 100%;
  background:
    linear-gradient(to right, rgba(53, 30, 224, .13) 1px, transparent 1px) 0 0 / 68px 100%,
    linear-gradient(to bottom, rgba(53, 30, 224, .13) 1px, transparent 1px) 0 0 / 100% 68px,
    radial-gradient(70% 120% at 88% 0%, rgba(53, 30, 224, .09), transparent 70%);
  -webkit-mask-image: linear-gradient(105deg, transparent 34%, #000 100%);
  mask-image: linear-gradient(105deg, transparent 34%, #000 100%);
}

.w1k-crumbs-wrap { margin-bottom: 22px; }
.w1k-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: .8125rem;
  padding: 0;
}
.w1k-crumbs li { display: flex; align-items: center; gap: 10px; }
.w1k-crumbs li + li::before {
  content: "";
  width: 5px; height: 5px;
  border-right: 1.4px solid #b7bcd4;
  border-bottom: 1.4px solid #b7bcd4;
  transform: rotate(-45deg);
  flex: 0 0 auto;
}
.w1k-crumbs a { color: var(--w1k-body); }
.w1k-crumbs a:hover { color: var(--w1k-primary); }
.w1k-crumbs [aria-current="page"] {
  color: var(--w1k-ink);
  font-weight: 500;
}

.w1k-page-title {
  font-size: clamp(2rem, 3.9vw, 3.05rem);
  line-height: 1.1;
  letter-spacing: -.03em;
}
.w1k-page-deck {
  font-size: 1.0625rem;
  color: var(--w1k-body);
  max-width: 58ch;
  margin-top: 18px;
}

/* ========================= 14. PAGE BODY / PROSE ======================== */
.w1k-page { padding: 84px 0 var(--w1k-section-y); }

.w1k-prose { max-width: 68ch; }
.w1k-prose p { margin-bottom: 20px; }
.w1k-prose p:last-child { margin-bottom: 0; }

.w1k-prose-lead {
  font-size: 1.1875rem;
  line-height: 1.66;
  color: var(--w1k-ink-soft);
}

/* h3 token, sized between the section h2 and the card h4 */
.w1k-h3 {
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  line-height: 1.3;
  margin: 40px 0 14px;
}

.w1k-prose-list {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}
.w1k-prose-list li {
  position: relative;
  padding-left: 26px;
}
.w1k-prose-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 11px;
  width: 7px; height: 7px;
  border-radius: 2px;
  background: var(--w1k-primary);
}

.w1k-quote {
  margin: 34px 0;
  padding: 26px 28px;
  background: var(--w1k-primary-50);
  border-left: 3px solid var(--w1k-primary);
  border-radius: 4px var(--w1k-r-md) var(--w1k-r-md) 4px;
}
.w1k-quote p {
  font-family: var(--w1k-font-head);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--w1k-ink);
  letter-spacing: -.01em;
  margin-bottom: 12px;
}
.w1k-quote cite {
  font-size: .8125rem;
  font-style: normal;
  color: var(--w1k-body);
}

.w1k-prose-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--w1k-line);
}

/* ============================ 15. SIDE RAIL ============================ */
.w1k-rail {
  background: var(--w1k-surface);
  border: 1px solid var(--w1k-line);
  border-radius: var(--w1k-r-lg);
  padding: 26px;
  box-shadow: var(--w1k-shadow-sm);
}
.w1k-rail-title {
  font-size: 1rem;
  margin-bottom: 6px;
}
.w1k-facts { margin: 0; }
.w1k-facts > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--w1k-line-soft);
}
.w1k-facts > div:last-child { border-bottom: 0; }
.w1k-facts dt {
  font-size: .875rem;
  font-weight: 400;
  color: var(--w1k-muted);
}
.w1k-facts dd {
  font-family: var(--w1k-font-mono);
  font-size: .8125rem;
  color: var(--w1k-ink);
  text-align: right;
  margin: 0;
}
.w1k-rail .w1k-status-pill { margin-top: 20px; }

#my-widget-popup{
      top: auto !important;
    bottom: 20px !important;
}
#widget-content{
    bottom: 0px !important;
    top: auto !important;
}

/* contact-page */



.ug-contact-page{

    background:#ffffff;

}



.ug-contact-info h2{

    font-size:48px;

    color:#014476;

    margin-bottom:16px;

}



.ug-contact-info p{

    color:#383838;

    line-height:1.8;

    margin-bottom:36px;

}



.contact-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

    padding:22px;

    margin-bottom:18px;

    background:#ffffff;

    border:1px solid rgba(1,136,186,.08);

    border-radius:22px;

    box-shadow:0 15px 35px rgba(1,68,118,.06);

    transition:.35s ease;

}



.contact-item:hover{

    transform:translateY(-6px);

    box-shadow:0 22px 45px rgba(1,68,118,.10);

}



.contact-icon{

    width:60px;

    height:60px;

    border-radius:18px;

    background:linear-gradient(135deg,#0188ba,#40a3c6);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#ffffff;

    font-size:24px;

    flex-shrink:0;

}



.contact-text h5{

    font-size:20px;

    color:#014476;

    margin-bottom:6px;

}



.contact-text span{

    display:block;

    color:#64748b;

    margin-bottom:4px;

}



.contact-text strong{

    color:#014476;

    font-weight:700;

}



.ug-contact-visual{

    position:relative;

    padding:40px;

    border-radius:32px;

    background:linear-gradient(135deg,#d1e5ec 0%,#94cadc 100%);

    overflow:hidden;

    box-shadow:0 30px 70px rgba(1,68,118,.10);

}



.ug-contact-visual img{

    position:relative;

    z-index:2;

    width:100%;

    border-radius:24px;

    filter:drop-shadow(0 20px 40px rgba(1,68,118,.12));

}

/* ===================== 16. INNER PAGE BREAKPOINTS ====================== */
@media (min-width: 992px) {
  .w1k-page .col-lg-4 { padding-left: 34px; }
  .w1k-rail {
    position: sticky;
    top: 106px;
  }
}

@media (max-width: 991.98px) {
  .w1k-banner { padding: 128px 0 50px; }
  .w1k-page { padding-top: 62px; }
  .w1k-rail { margin-top: 20px; }
}

@media (max-width: 767.98px) {
  .w1k-banner { padding: 114px 0 44px; }
  /* keep the grid texture off the copy on narrow screens */
  .w1k-banner-grid {
    -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 46%);
    mask-image: linear-gradient(180deg, #000 0%, transparent 46%);
  }
  .w1k-page { padding-top: 48px; }
  .w1k-page-title { max-width: none; }
  .w1k-prose-lead { font-size: 1.0625rem; }
  .w1k-h3 { margin-top: 34px; }
  .w1k-quote { padding: 22px; margin: 28px 0; }
  .w1k-quote p { font-size: 1.0625rem; }
  .w1k-prose-cta { gap: 16px; }
  .w1k-prose-cta .w1k-btn { width: 100%; }
}

/* ====================== reduced motion preference ====================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .w1k-anim [data-hero-step] { opacity: 1; transform: none; }
  .w1k-bars span { transform: scaleY(1); }
  .w1k-btn:hover { transform: none; }
}
