/*
 * home-custom.css — custom home-page styles.
 *
 * Extracted from inline <style> blocks in src/index.html. Loaded AFTER
 * css/home.css so it can override the WordPress/Elementor export. The
 * hero rules still use !important because the markup sits inside an
 * Elementor widget container that injects competing rules at the same
 * specificity; rehoming the hero out of that container is the next step
 * of the refactor and will let those !important declarations go away.
 *
 * Sections:
 *   1. Cirra AI hero (.cirra-hero) — inside Elementor widget container
 *   2. Trusted-by logo marquee (.trusted-banner)
 *   3. 2026 homepage sections (.home-2026, .stats, .finalcta)
 */

/* ============================================================
   1. Cirra AI hero (.cirra-hero)
   ============================================================ */
/* Inter + JetBrains Mono are loaded site-wide via tracking-head.njk. */

/* Reset Elementor's aggressive global styles within our widget */
.cirra-hero,
.cirra-hero *,
.cirra-hero *::before,
.cirra-hero *::after {
  box-sizing: border-box !important;
  text-decoration: none !important;
  list-style: none !important;
  float: none !important;
}

.cirra-hero {
  position: relative !important;
  padding: 20px 28px 32px !important;
  text-align: center !important;
  max-width: 1140px !important;
  margin: 0 auto !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  -webkit-font-smoothing: antialiased !important;
  color: #1D1D1D !important;
  line-height: 1.5 !important;
  display: block !important;
  width: 100% !important;
  background: transparent !important;
  border: none !important;
}

.cirra-hero::before {
  content: '' !important;
  position: absolute !important;
  top: -80px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 100vw !important;
  height: 800px !important;
  background:
    radial-gradient(ellipse 760px 500px at 50% 40%, rgba(64, 104, 235, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 30% 60%, rgba(0, 153, 255, 0.03) 0%, transparent 70%),
    radial-gradient(ellipse 400px 350px at 70% 30%, rgba(104, 201, 176, 0.03) 0%, transparent 70%) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.cirra-hero__inner {
  position: relative !important;
  z-index: 1 !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.cirra-hero__title {
  font-family: 'Inter', -apple-system, sans-serif !important;
  font-size: clamp(2.5rem, 5.6vw, 4.25rem) !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.0 !important;
  color: #1D1D1D !important;
  margin: 0 0 16px 0 !important;
  padding: 0 !important;
  text-align: center !important;
  background: none !important;
  border: none !important;
  display: block !important;
}

.cirra-hero__subtitle {
  font-family: 'Inter', -apple-system, sans-serif !important;
  font-size: 18px !important;
  color: #4D4D4D !important;
  margin: 0 auto 32px auto !important;
  padding: 0 !important;
  line-height: 1.65 !important;
  max-width: 720px !important;
  font-weight: 400 !important;
  text-align: center !important;
  display: block !important;
  background: none !important;
  border: none !important;
}

/* Chat box */
.cirra-hero__chat {
  background: #fff !important;
  border: 1px solid #E7EBF3 !important;
  border-radius: 16px !important;
  padding: 0 !important;
  margin: 0 auto 24px auto !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
  max-width: 760px !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
  position: relative !important;
  overflow: hidden !important;
}

.cirra-hero__chat:focus-within {
  border-color: #4068EB !important;
  box-shadow: 0 0 0 3px rgba(64, 104, 235, 0.12), 0 4px 20px rgba(0, 0, 0, 0.06) !important;
}

textarea.cirra-hero__textarea {
  width: 100% !important;
  border: none !important;
  background: transparent !important;
  font-family: 'Inter', -apple-system, sans-serif !important;
  font-size: 15px !important;
  color: #1D1D1D !important;
  resize: none !important;
  min-height: 140px !important;
  max-height: 220px !important;
  height: auto !important;
  outline: none !important;
  padding: 18px 20px 10px 20px !important;
  margin: 0 !important;
  line-height: 1.5 !important;
  display: block !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

textarea.cirra-hero__textarea::placeholder {
  color: #b0b0bc !important;
}

.cirra-hero__toolbar {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 8px !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 16px 16px 16px !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
}

.cirra-hero__model {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  color: #7a7a8c !important;
  padding: 6px 10px !important;
  margin: 0 !important;
  background: #f5f5f7 !important;
  border-radius: 6px !important;
  white-space: nowrap !important;
  border: none !important;
  display: inline-block !important;
  line-height: 1.4 !important;
}

button.cirra-hero__send {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
  background: #4068EB !important;
  border: none !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: white !important;
  transition: all 0.2s !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  font-size: 16px !important;
  line-height: 1 !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

button.cirra-hero__send:hover:not(:disabled) {
  background: #2d4fd4 !important;
  transform: translateY(-1px) !important;
}
button.cirra-hero__send:disabled {
  background: #E7EBF3 !important;
  color: #B0B0BC !important;
  cursor: not-allowed !important;
  transform: none !important;
}

/* Pills */
.cirra-hero__pills {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 0 0 32px 0 !important;
  padding: 0 !important;
  list-style: none !important;
  background: none !important;
  border: none !important;
}

button.cirra-hero__pill {
  padding: 10px 18px !important;
  border-radius: 50px !important;
  border: 1px solid #E7EBF3 !important;
  background: #fff !important;
  cursor: pointer !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #1D1D1D !important;
  transition: all 0.2s !important;
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
  font-family: 'Inter', -apple-system, sans-serif !important;
  line-height: 1 !important;
  margin: 0 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  box-shadow: none !important;
  width: auto !important;
  height: auto !important;
  min-width: 0 !important;
  flex-grow: 0 !important;
  flex-shrink: 0 !important;
}

button.cirra-hero__pill:hover {
  border-color: #4068EB !important;
  background: #edf0fc !important;
  color: #4068EB !important;
}

.cirra-hero__pill-icon {
  width: 14px !important;
  height: 14px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}

.cirra-hero__pill-icon svg {
  display: block !important;
  width: 14px !important;
  height: 14px !important;
}

/* Trust line */
.cirra-hero__trust {
  font-family: 'Inter', -apple-system, sans-serif !important;
  font-size: 13px !important;
  color: #7a7a8c !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center !important;
  display: block !important;
  background: none !important;
  border: none !important;
}

/* Responsive */
@media (max-width: 640px) {
  .cirra-hero {
    padding: 24px 0 24px !important;
  }
  .cirra-hero__subtitle {
    margin: 0 auto 28px auto !important;
    padding: 0 20px !important;
  }
  .cirra-hero__title {
    padding: 0 20px !important;
  }
  .cirra-hero__chat {
    margin: 0 20px 24px 20px !important;
  }
  .cirra-hero__pills {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    padding: 0 20px 8px 20px !important;
    margin: 0 0 16px 0 !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }
  .cirra-hero__pills::-webkit-scrollbar {
    display: none !important;
  }
  button.cirra-hero__pill {
    font-size: 13px !important;
    padding: 8px 14px !important;
    flex-shrink: 0 !important;
  }
  .cirra-hero__trust {
    padding: 0 20px !important;
  }
}

/* ---- 2026 hero additions: eyebrow, title accent, ticks, demo button ---- */
.cirra-hero__eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: 'Inter', -apple-system, sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em !important;
  color: #4D4D4D !important;
  background: #F5F5F7 !important;
  border: 1px solid #E7EBF3 !important;
  border-radius: 999px !important;
  padding: 6px 14px !important;
  margin: 0 auto 24px auto !important;
}
.cirra-hero__eyebrow-dot {
  display: inline-block !important;
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: #14C8A0 !important;
  box-shadow: 0 0 0 3px rgba(20, 200, 160, 0.18) !important;
}
.cirra-hero__title-accent {
  color: #4068EB !important;
}
.cirra-hero__ctas {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 12px !important;
  margin: 0 auto !important;
}
.cirra-hero__trustline {
  font-family: 'Inter', -apple-system, sans-serif !important;
  font-size: 13px !important;
  color: #7a7a8c !important;
  text-align: center !important;
  margin: 18px auto 0 auto !important;
  padding: 0 !important;
  line-height: 1.5 !important;
}
/* At wide viewports the Elementor parent widget caps our hero around
   832px. Override the widget + its inner container so the chat card
   can actually expand to the larger max-width below. Target by
   data-id (Elementor's stable identifier) rather than the generated
   `elementor-element-<id>` class — both contain the same UID, but
   the data-id-keyed selector makes the intent clearer and is less
   visually entangled with Elementor's class naming convention. */
@media (min-width: 1200px) {
  [data-element_type="widget"][data-id="d6c1c3e"],
  [data-element_type="widget"][data-id="d6c1c3e"] > .elementor-widget-container {
    width: 100% !important;
    max-width: 1140px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .cirra-hero { max-width: 1140px !important; padding-left: 32px !important; padding-right: 32px !important; }
  .cirra-hero__chat { max-width: 880px !important; }
}
a.cirra-hero__btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-family: 'Inter', -apple-system, sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  padding: 13px 22px !important;
  border-radius: 999px !important;
  border: 1px solid transparent !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease !important;
}
a.cirra-hero__btn--primary {
  background: #4068EB !important;
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(64,104,235,0.22) !important;
}
a.cirra-hero__btn--primary:hover {
  background: #2D4FD4 !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 10px 26px rgba(64,104,235,0.30) !important;
}
a.cirra-hero__btn--ghost {
  background: #FFFFFF !important;
  color: #1D1D1D !important;
  border-color: #E7EBF3 !important;
}
a.cirra-hero__btn--ghost:hover {
  background: #F5F5F7 !important;
  border-color: #D8DDEA !important;
}
a.cirra-hero__btn--ghost svg {
  color: #4068EB !important;
}
@media (max-width: 640px) {
  .cirra-hero__eyebrow { margin-top: 8px !important; }
  .cirra-hero__trustline { padding: 0 20px !important; }
}

/* ============================================================
   2. Trusted-by logo marquee (.trusted-banner)
   ============================================================ */
.trusted-banner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 12px 0 36px;
  text-align: center;
  overflow: hidden;
}

.trusted-banner__label {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a7a8c;
  margin: 0;
  padding: 0;
}

.trusted-banner__track-wrapper {
  position: relative;
  width: 100%;
  /* Reserve vertical room above the logos so the hover tooltip can
     render within the wrapper's overflow box (the mask-image below
     forces overflow:hidden, which would otherwise clip the tooltip). */
  padding-top: 40px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.trusted-banner__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: trusted-scroll 45s linear infinite;
}

.trusted-banner__track:hover,
.trusted-banner__track:focus-within {
  animation-play-state: paused;
}

@keyframes trusted-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trusted-banner__item {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
}

.trusted-banner__logo {
  flex-shrink: 0;
  height: 48px;
  width: 48px;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0.78;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.trusted-banner__item:hover .trusted-banner__logo,
.trusted-banner__item:focus-visible .trusted-banner__logo,
.trusted-banner__logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Custom hover tooltip — native title attributes are unreliable on a
   marquee that's auto-scrolling (the hover state has to be stable for
   ~1s before the browser shows them, which is brittle here). */
.trusted-banner__item[data-name]::after {
  content: attr(data-name);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  background: #05184F;
  color: #fff;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  box-shadow: 0 4px 12px rgba(5, 24, 79, 0.18);
  z-index: 5;
}
.trusted-banner__item[data-name]::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 3px);
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #05184F;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  z-index: 5;
}
.trusted-banner__item[data-name]:hover::after,
.trusted-banner__item[data-name]:hover::before,
.trusted-banner__item[data-name]:focus-visible::after,
.trusted-banner__item[data-name]:focus-visible::before {
  opacity: 1;
}
.trusted-banner__item[data-name]:focus-visible {
  outline: 2px solid #4068EB;
  outline-offset: 2px;
  border-radius: 8px;
}

@media (max-width: 640px) {
  .trusted-banner {
    padding: 8px 0 28px;
  }
  .trusted-banner__track {
    gap: 36px;
    animation-duration: 35s;
  }
  .trusted-banner__logo {
    height: 32px;
    width: 32px;
    border-radius: 6px;
  }
}

/* ============================================================
   3. 2026 homepage sections (.home-2026, .stats, .finalcta)
   ============================================================ */
.home-2026 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1D1D1D;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.home-2026 *, .home-2026 *::before, .home-2026 *::after { box-sizing: border-box; }
.home-2026 .h-section {
  position: relative;
  padding: 104px 24px;
}
.home-2026 #usecases {
  padding-top: 52px;
  padding-bottom: 52px;
}
.home-2026 .h-section--tight { padding: 80px 24px; }
.home-2026 .h-section--subtle { background: #F5F5F7; }
.home-2026 .h-wrap { max-width: 1140px; margin: 0 auto; position: relative; z-index: 1; }
.home-2026 .h-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.home-2026 .h-section__halo {
  position: absolute; pointer-events: none; z-index: 0; inset: 0; overflow: hidden;
}
.home-2026 .h-section__halo::after {
  content: ""; position: absolute; width: 760px; height: 760px; border-radius: 50%;
  left: 50%; top: 0; transform: translate(-50%, -55%);
  background: radial-gradient(circle, rgba(64,104,235,0.07) 0%, transparent 62%);
}
.home-2026 .h-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4068EB;
  margin-bottom: 18px;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
}
.home-2026 .h-eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #14C8A0;
  flex-shrink: 0;
}
.home-2026 .h-h2 {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: #05184F;
  margin: 0 0 18px;
  text-wrap: balance;
}
.home-2026 .h-lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: #4D4D4D;
  margin: 0 auto;
  max-width: 620px;
}
.home-2026 .h-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  cursor: pointer;
}
.home-2026 .h-btn--primary {
  background: #4068EB;
  color: #fff;
}
.home-2026 .h-btn--primary:hover { background: #2D4FD4; }
.home-2026 .h-btn--ghost {
  background: #fff;
  color: #1D1D1D;
  border-color: #E7EBF3;
}
.home-2026 .h-btn--ghost:hover { background: #F5F5F7; border-color: #D8DDEA; }
.home-2026 .h-btn--light {
  background: #fff;
  color: #4068EB;
}
.home-2026 .h-btn--light:hover { background: #EDF0FC; }
.home-2026 .h-btn--ghost-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.home-2026 .h-btn--ghost-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.65); }

/* ---- What-is / How-to ------------------------------------------------ */
.home-2026 .howto {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: start;
  margin-top: 12px;
}
.home-2026 .steps { display: flex; flex-direction: column; gap: 4px; }
.home-2026 .step {
  display: flex; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid #E7EBF3;
}
.home-2026 .step:last-child { border-bottom: none; }
.home-2026 .step__n {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00FFDA 0%, #4068EB 100%);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.home-2026 .step__t { font-size: 15.5px; line-height: 1.55; color: #4D4D4D; padding-top: 4px; }
.home-2026 .step__t strong { font-weight: 600; color: #05184F; }

/* Claude conversation mock */
.home-2026 .mock {
  background: #fff;
  border: 1px solid #E7EBF3;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(5, 24, 79, 0.06);
  overflow: hidden;
}
.home-2026 .mock__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #EDF0FC;
  background: #FCFCFD;
}
.home-2026 .mock__title {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: #4D4D4D;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
}
.home-2026 .mock__live-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #D9604A;
  box-shadow: 0 0 0 3px rgba(217, 96, 74, 0.18);
}
.home-2026 .mock__dots { display: inline-flex; gap: 6px; }
.home-2026 .mock__dots span {
  width: 9px; height: 9px; border-radius: 50%; background: #E7EBF3;
}
.home-2026 .mock__body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 14px; }
.home-2026 .cl-bubble-u {
  align-self: flex-end;
  background: #4068EB; color: #fff;
  padding: 12px 14px; border-radius: 14px 14px 4px 14px;
  max-width: 88%; font-size: 14px; line-height: 1.5;
}
.home-2026 .cl-response {
  display: flex; gap: 10px; align-items: flex-start;
}
.home-2026 .cl-avatar {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: #D97040;
  color: #fff; font-weight: 400; font-size: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1;
}
.home-2026 .cl-text { margin: 0; font-size: 14px; color: #1D1D1D; line-height: 1.55; }
.home-2026 .cl-tools { display: flex; flex-direction: column; gap: 6px; margin-left: 38px; }
.home-2026 .cl-tool {
  display: flex; justify-content: space-between; align-items: center;
  background: #F5F5F7;
  border: 1px solid #EDF0FC;
  border-radius: 8px;
  padding: 9px 13px;
  font-size: 11.5px;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
  gap: 12px;
}
.home-2026 .cl-tool__left {
  display: inline-flex; align-items: center; gap: 6px;
  min-width: 0; flex: 1 1 auto;
}
.home-2026 .cl-bullet { color: #D97040; font-size: 9px; flex-shrink: 0; }
.home-2026 .cl-prefix { color: #D97040; font-weight: 600; white-space: nowrap; }
.home-2026 .cl-tname {
  color: #1D1D1D; font-weight: 600;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0;
}
.home-2026 .cl-tool__right {
  color: #16A34A; white-space: nowrap; font-size: 11px; flex-shrink: 0;
}
.home-2026 .cl-final {
  margin: 4px 0 0 38px; font-size: 13px; color: #4D4D4D; line-height: 1.55;
}
.home-2026 .cl-code {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  background: #EDF0FC; color: #4068EB;
  padding: 1px 6px; border-radius: 4px; font-size: 12px;
}

/* ---- Stats band ------------------------------------------------------ */
.home-2026 .stats {
  position: relative; overflow: hidden;
  background: linear-gradient(90deg, #07205A 0%, #0B2E63 48%, #0E4F63 100%);
  color: #fff;
}
.home-2026 .stats::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 140% at 50% 50%, rgba(0,255,218,0.06) 0%, transparent 72%);
}
.home-2026 .stats__inner {
  position: relative; z-index: 1;
  max-width: 1140px; margin: 0 auto;
  padding: 60px 24px;
}
.home-2026 .stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.home-2026 .stat { padding: 4px 24px; position: relative; }
.home-2026 .stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 54px; background: rgba(255,255,255,0.14);
}
.home-2026 .stat__v {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  background: linear-gradient(100deg, #FFFFFF 0%, #94EBED 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 8px;
}
.home-2026 .stat__d { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.82); }

/* ---- Cards: 2-column grid shared by Use cases (currently 2x3) and Who-uses (2x1) -- */
.home-2026 .h-cards2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.home-2026 .h-card {
  background: #fff;
  border: 1px solid #E7EBF3;
  border-radius: 16px;
  padding: 32px 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.home-2026 .h-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(5,24,79,0.08);
  border-color: #D7DEF2;
}
.home-2026 .h-card__icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: linear-gradient(135deg, #EDF0FC 0%, #E3F7F1 100%);
  color: #4068EB;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.home-2026 .h-card__icon svg { width: 26px; height: 26px; }
.home-2026 .h-card__t { font-size: 19px; font-weight: 700; color: #05184F; margin: 0 0 10px; letter-spacing: -0.01em; }
.home-2026 .h-card__b { font-size: 15px; color: #4D4D4D; margin: 0; line-height: 1.6; }

/* ---- Compatibility --------------------------------------------------- */
.home-2026 .compat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.home-2026 .compat {
  background: #fff;
  border: 1px solid #E7EBF3;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home-2026 .compat:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(5,24,79,0.08); }
.home-2026 .compat__check {
  width: 34px; height: 34px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: rgba(13,191,144,0.12);
  color: #0DBF90;
  display: flex; align-items: center; justify-content: center;
}
.home-2026 .compat__check svg { width: 18px; height: 18px; }
.home-2026 .compat__name { font-size: 17px; font-weight: 700; color: #05184F; margin: 0 0 6px; }
.home-2026 .compat__sub { font-size: 13px; color: #7A7A8C; margin: 0; line-height: 1.45; }

/* ---- Security -------------------------------------------------------- */
.home-2026 .sec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.home-2026 .sec {
  background: #fff;
  border: 1px solid #E7EBF3;
  border-radius: 14px;
  padding: 28px 24px;
}
.home-2026 .sec__icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: #EDF0FC;
  color: #4068EB;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.home-2026 .sec__icon svg { width: 22px; height: 22px; }
.home-2026 .sec__t { font-size: 16.5px; font-weight: 700; color: #05184F; margin: 0 0 8px; }
.home-2026 .sec__b { font-size: 14px; color: #4D4D4D; margin: 0; line-height: 1.6; }
.home-2026 .sec--cta {
  background: #2D4FD4;
  border-color: #2D4FD4;
  display: flex; flex-direction: column; justify-content: space-between; gap: 16px;
}
.home-2026 .sec--cta p { color: #fff; margin: 0; font-size: 16px; line-height: 1.5; font-weight: 500; }
.home-2026 .sec--cta .h-btn {
  align-self: flex-start;
  background: #EDF0FC; color: #4068EB; border-color: transparent;
}
.home-2026 .sec--cta .h-btn:hover { background: #fff; }

/* ---- Who uses (uses shared .h-cards2 grid above) --------------------- */
.home-2026 .usecard {
  background: #fff;
  border: 1px solid #E7EBF3;
  border-radius: 14px;
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.home-2026 .usecard__tag {
  align-self: flex-start;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: #4068EB; background: #EDF0FC;
  padding: 4px 10px; border-radius: 999px;
}
.home-2026 .usecard__t { font-size: 22px; font-weight: 700; color: #05184F; margin: 0 0 4px; line-height: 1.2; letter-spacing: -0.015em; }
.home-2026 .usecard__link {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 4px;
  color: #4068EB; font-weight: 600; font-size: 14px; text-decoration: none;
}
.home-2026 .usecard__link:hover { text-decoration: underline; }

/* ---- Testimonials ---------------------------------------------------- */
.home-2026 .tcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.home-2026 .tcard--feature {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 44px;
  padding: 40px 46px;
  background: linear-gradient(120deg, #EEF2FF 0%, #ECFBF6 100%);
  border-color: #DCE6FF;
}
.home-2026 .tcard--feature .tcard__mark { font-size: 64px; margin: 0; align-self: flex-start; }
.home-2026 .tcard--feature .tcard__q {
  font-size: 22px; line-height: 1.5; color: #05184F; font-weight: 500;
  margin: 0; flex: 1;
}
.home-2026 .tcard--feature .tcard__foot {
  border-top: none; padding-top: 0;
  flex-direction: column; align-items: flex-start; gap: 12px;
  min-width: 180px; flex-shrink: 0;
}
.home-2026 .tcard {
  background: #fff;
  border: 1px solid #E7EBF3;
  border-radius: 16px;
  padding: 30px;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 8px rgba(5,24,79,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.home-2026 .tcard:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(5,24,79,0.08); }
.home-2026 .tcard__mark {
  font-family: Georgia, serif;
  font-size: 48px; line-height: 0.7;
  color: #4068EB; opacity: 0.25;
  margin-bottom: 4px;
}
.home-2026 .tcard__q {
  font-size: 16px; color: #1D1D1D; line-height: 1.6; flex: 1; margin: 0 0 20px;
}
.home-2026 .tcard__foot {
  display: flex; align-items: center; gap: 13px;
  padding-top: 18px; border-top: 1px solid #E7EBF3;
}
.home-2026 .tcard__avatar {
  width: 40px; height: 40px;
  border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #00FFDA 0%, #4068EB 100%);
  color: #fff; font-weight: 700; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.home-2026 .tcard__nm { display: block; font-size: 14px; font-weight: 700; color: #05184F; }
.home-2026 .tcard__rl { display: block; font-size: 12.5px; color: #7A7A8C; margin-top: 2px; }

/* ---- Pricing teaser -------------------------------------------------- */
.home-2026 .pricing__card {
  position: relative; overflow: hidden;
  max-width: 760px; margin: 0 auto;
  background: linear-gradient(180deg, #EDF0FC 0%, #fff 100%);
  border: 1px solid #E7EBF3;
  border-radius: 22px;
  padding: 64px 32px;
  text-align: center;
}
.home-2026 .pricing__card::before {
  content: ""; position: absolute; width: 600px; height: 360px;
  left: 50%; top: -120px; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0,255,218,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.home-2026 .pricing__card > * { position: relative; z-index: 1; }
.home-2026 .pricing__row {
  display: flex; justify-content: center; gap: 12px; flex-wrap: wrap;
  margin: 28px 0 16px;
}
.home-2026 .pricing__note { font-size: 13px; color: #7A7A8C; margin: 0; }

/* ---- FAQ ------------------------------------------------------------- */
.home-2026 .faq { max-width: 760px; margin: 0 auto; border-top: 1px solid #E7EBF3; }
.home-2026 .faq__item { border-bottom: 1px solid #E7EBF3; }
.home-2026 .faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  list-style: none;
  cursor: pointer;
  padding: 24px 4px;
  font-size: 17px; font-weight: 600; color: #05184F;
  transition: color 0.15s ease;
}
.home-2026 .faq__item summary:hover { color: #4068EB; }
.home-2026 .faq__item summary::-webkit-details-marker { display: none; }
.home-2026 .faq__icon {
  width: 22px; height: 22px;
  position: relative; flex-shrink: 0; color: currentColor;
}
.home-2026 .faq__icon::before, .home-2026 .faq__icon::after {
  content: ''; position: absolute; background: currentColor; border-radius: 2px;
  transition: transform 0.2s ease;
}
.home-2026 .faq__icon::before { top: 10px; left: 3px; width: 16px; height: 2px; }
.home-2026 .faq__icon::after { left: 10px; top: 3px; width: 2px; height: 16px; }
.home-2026 .faq__item[open] .faq__icon::after { transform: scaleY(0); }
.home-2026 .faq__a {
  padding: 0 4px 24px;
  font-size: 15px; color: #4D4D4D; line-height: 1.7;
  max-width: 92%;
}

/* ---- Final CTA ------------------------------------------------------- */
.home-2026 .finalcta {
  position: relative; overflow: hidden;
  background: #05184F;
  color: #fff;
}
.home-2026 .finalcta::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 2;
  background: linear-gradient(90deg, transparent 0%, #00FFDA 32%, #4068EB 68%, transparent 100%);
  opacity: 0.65;
}
.home-2026 .finalcta::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 78% 28%, rgba(64,104,235,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 50% 55% at 18% 82%, rgba(0,255,218,0.2) 0%, transparent 60%);
}
.home-2026 .finalcta__inner {
  position: relative; z-index: 1;
  max-width: 720px; margin: 0 auto; text-align: center;
  padding: 104px 24px;
}
.home-2026 .finalcta h2 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 18px;
  color: #fff;
}
.home-2026 .finalcta__lead {
  font-size: 18px; line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0 auto 34px; max-width: 480px;
}
.home-2026 .finalcta__row { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ---- Responsive ------------------------------------------------------ */
@media (max-width: 1024px) {
  .home-2026 .compat-grid { grid-template-columns: repeat(2, 1fr); }
  .home-2026 .sec-grid { grid-template-columns: repeat(2, 1fr); }
  .home-2026 .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .home-2026 .stat + .stat::before { display: none; }
  .home-2026 .tcards { grid-template-columns: repeat(2, 1fr); }
  .home-2026 .tcard--feature { flex-direction: column; align-items: flex-start; gap: 22px; padding: 32px; }
  .home-2026 .tcard--feature .tcard__foot { flex-direction: row; align-items: center; }
}
@media (max-width: 767px) {
  .home-2026 .h-section { padding: 64px 20px; }
  .home-2026 .h-section--tight { padding: 56px 20px; }
  .home-2026 .howto { grid-template-columns: 1fr; gap: 32px; }
  .home-2026 .h-cards2, .home-2026 .compat-grid, .home-2026 .sec-grid, .home-2026 .tcards {
    grid-template-columns: 1fr;
  }
  .home-2026 .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .home-2026 .pricing__card { padding: 36px 24px; }
  .home-2026 .finalcta__inner { padding: 64px 20px; }
}
