/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 ~ Copyright 2025 AdobeXP
 ~
 ~ Licensed under the Apache License, Version 2.0 (the "License");
 ~ you may not use this file except in compliance with the License.
 ~ You may obtain a copy of the License at
 ~
 ~     http://www.apache.org/licenses/LICENSE-2.0
 ~
 ~ Unless required by applicable law or agreed to in writing, software
 ~ distributed under the License is distributed on an "AS IS" BASIS,
 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 ~ See the License for the specific language governing permissions and
 ~ limitations under the License.
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.cmp-pdfviewer__content {
  height: 500px;
}
.pdfviewer:not(.cq-Editable-dom) .cmp-pdfviewer__full-window-borderless {
  height: 100vh;
  position: fixed;
  width: 100vw;
  top: 0;
  left: 0;
  z-index: 9999;
}
.pdfviewer.cq-Editable-dom .cmp-pdfviewer__full-window-borderless {
  height: 500px;
}

/**
 * Footer Component CSS
 * 
 * NOTE: The curtain reveal effect is DISABLED in AEM because:
 * - AEM's DOM structure uses container wrappers (top, main-content, bottom)
 * - The footer is nested inside experience fragment containers
 * - This is fundamentally incompatible with the curtain effect
 * 
 * The footer displays in normal document flow in AEM.
 */

/* ============================================
   Footer Base Styles (Normal Flow for AEM)
   ============================================ */
.footer[data-component="footer"] {
    position: relative;
    z-index: auto;
    pointer-events: auto;
}

/* ============================================
   Footer Surface
   ============================================ */
.footer__surface {
    pointer-events: auto;
    background: var(--footer-bg, var(--site-body-bg, #ffffff));
    color: var(--site-body-text, #111827);
    border-radius: 0;
    margin: 0;
    padding: 48px 48px 28px;
    box-shadow: none;
    overflow: hidden;
}

/* Theme-scoped tokens (inherit from site theme) */
.footer__surface {
    --footer-muted: color-mix(in srgb, var(--site-body-text, #111827) 72%, transparent);
    --footer-divider: color-mix(in srgb, var(--site-body-text, #111827) 14%, transparent);
}

/* ============================================
   Footer Grid Layout
   ============================================ */
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.8fr;
    gap: 40px;
    align-items: start;
}

/* ============================================
   Footer Left Section (Heading, Lead, Email)
   ============================================ */
.footer__heading {
    font-size: 48px;
    line-height: 1.05;
    font-weight: 500;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
}

.footer__lead {
    margin: 0 0 10px;
    color: var(--footer-muted);
    font-size: 14px;
    line-height: 1.6;
}

.footer__email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--site-body-text, #111827);
    text-decoration: none;
    font-size: 16px;
    position: relative;
}

.footer__email::after {
    content: "↗";
    display: inline-block;
    transform: translateY(-1px);
    opacity: 0.9;
}

/* ============================================
   Center-to-edges Underline Hover Animation
   ============================================ */
.footer__email::before,
.footer__link::after,
.footer__legal::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease;
    pointer-events: none;
}

/* Email uses ::before to keep ::after reserved for the ↗ icon */
.footer__email::before {
    bottom: -8px;
}

.footer__email:hover::before {
    transform: scaleX(1);
}

/* ============================================
   Footer Column Navigation
   ============================================ */
.footer__col-title {
    margin: 10px 0 12px;
    color: color-mix(in srgb, var(--site-body-text, #111827) 55%, transparent);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.footer__link {
    color: var(--site-body-text, #111827);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    display: inline-block;
}

.footer__link:hover::after {
    transform: scaleX(1);
}

/* ============================================
   Footer Divider
   ============================================ */
.footer__divider {
    height: 1px;
    background: var(--footer-divider);
    margin: 34px 0 14px;
}

/* ============================================
   Footer Bottom Section (Legal & Copyright)
   ============================================ */
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer__legal {
    color: color-mix(in srgb, var(--site-body-text, #111827) 60%, transparent);
    font-size: 14px;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.footer__legal:hover {
    color: var(--site-body-text, #111827);
}

.footer__legal:hover::after {
    transform: scaleX(1);
}

.footer__copyright {
    color: color-mix(in srgb, var(--site-body-text, #111827) 60%, transparent);
    font-size: 14px;
}

/* ============================================
   Focus Styles for Accessibility
   ============================================ */
.footer__email:focus-visible,
.footer__link:focus-visible,
.footer__legal:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
    border-radius: 6px;
}

/* ============================================
   Responsive Styles (Mobile)
   ============================================ */
@media (max-width: 768px) {
    .footer__surface {
        padding: 28px 20px 20px;
        border-radius: 0;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "left left"
            "menu useful";
        gap: 22px 24px;
    }

    .footer__left {
        grid-area: left;
    }

    /* Target the two nav columns by their aria-labels (stable + no markup changes needed) */
    .footer__col[aria-label="Menu"],
    .footer__col:first-of-type {
        grid-area: menu;
    }

    .footer__col[aria-label="Useful"],
    .footer__col:last-of-type {
        grid-area: useful;
    }

    .footer__heading {
        font-size: 34px;
    }

    .footer__divider {
        margin: 22px 0 12px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}


/* ==========================================================================
   Blob Image Section Component Styles
   Supports dark/light themes, multiple shape patterns, overlay elements,
   and RTE (Rich Text Editor) content in the description field.

   Note: Theme variables (--blob-image-section-*, --cta-pill-*, etc.) are
   defined in the global theme CSS files (theme-variables-dark.css /
   theme-variables-light.css) and applied via page template. This component
   only consumes these variables.

   Source: st-static-site/src/static-components/BlobImageSection/blob-image-section.scss
   Build: npm run build:blobimagesection:css (in st-static-site)
   ========================================================================== */

.blob-image-section {
  width: 100%;
  padding: 40px 20px;
  color: var(--standard-primary-site-text-color, #111827);
}
.blob-image-section--with-bg {
  background: var(--blob-image-section-bg);
}

.blob-image-section__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.blob-image-section__card {
  border-radius: 24px;
  padding: 40px;
  overflow: hidden;
}

.blob-image-section--with-card-bg .blob-image-section__card {
  background: var(--blob-image-section-card-bg, #f0f7ff);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 8px 32px rgba(0, 0, 0, 0.12);
}

.blob-image-section__layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blob-image-section__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 100%;
}

.blob-image-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--blob-image-section-badge-bg, #ffffff);
  border: 1px solid var(--blob-image-section-badge-border, #e5e7eb);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blob-image-section-badge-text, #3b82f6);
  width: fit-content;
}

.blob-image-section__title {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--standard-primary-site-text-color, #111827);
}

/* Description with RTE-generated HTML markup support */
/* font-synthesis: allows browser to synthesize bold/italic when custom fonts
   (e.g. Hubot Sans declared at weight 400 only) lack a dedicated bold face. */
.blob-image-section__description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--standard-secondary-site-text-color, #6b7280);
  margin: 0;
  max-width: 520px;
  font-synthesis: weight style;
}
.blob-image-section__description p {
  margin: 0 0 0.75em;
}
.blob-image-section__description p:last-child {
  margin-bottom: 0;
}
.blob-image-section__description p:first-child, .blob-image-section__description > p:first-child {
  margin-top: 0;
}
.blob-image-section__description strong, .blob-image-section__description b {
  font-weight: 700;
  color: inherit;
  text-shadow: 0.5px 0 0 currentColor, -0.5px 0 0 currentColor;
}
.blob-image-section__description em, .blob-image-section__description i {
  font-style: italic;
}
.blob-image-section__description a {
  color: var(--blob-image-section-link-color, #3b82f6);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.blob-image-section__description a:hover {
  text-decoration-thickness: 2px;
}
.blob-image-section__description ul, .blob-image-section__description ol {
  margin: 0.75em 0;
  padding-left: 1.5em;
}
.blob-image-section__description ul {
  list-style-type: disc;
}
.blob-image-section__description ol {
  list-style-type: decimal;
}
.blob-image-section__description li {
  margin-bottom: 0.25em;
}
.blob-image-section__description blockquote {
  margin: 1em 0;
  padding: 0.75em 1.25em;
  border-left: 4px solid var(--blockquote-border-color, #6366f1);
  background: var(--blockquote-bg, rgba(99, 102, 241, 0.08));
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--standard-secondary-site-text-color, #6b7280);
}
.blob-image-section__description blockquote p {
  margin: 0;
}
.blob-image-section__description h1 {
  font-size: 1.5em;
  margin: 1em 0 0.5em;
  font-weight: 600;
  color: inherit;
}
.blob-image-section__description h2 {
  font-size: 1.35em;
  margin: 1em 0 0.5em;
  font-weight: 600;
  color: inherit;
}
.blob-image-section__description h3 {
  font-size: 1.2em;
  margin: 0.9em 0 0.5em;
  font-weight: 600;
  color: inherit;
}
.blob-image-section__description h4, .blob-image-section__description h5, .blob-image-section__description h6 {
  font-size: 1.1em;
  margin: 0.8em 0 0.4em;
  font-weight: 600;
  color: inherit;
}
.blob-image-section__description pre {
  margin: 0.75em 0;
  padding: 1em;
  background: var(--blob-image-section-pre-bg, rgba(0, 0, 0, 0.05));
  border-radius: 8px;
  font-family: ui-monospace, monospace;
  font-size: 0.9em;
  overflow-x: auto;
}
.blob-image-section__description sub, .blob-image-section__description sup {
  font-size: 0.75em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.blob-image-section__description sup {
  vertical-align: super;
}
.blob-image-section__description sub {
  vertical-align: sub;
}

.blob-image-section__images {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding-left: 10px;
  padding-right: 10px;
}

.blob-image-section__blob-primary {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 4/3;
  overflow: hidden;
  clip-path: url("../components/content/blob-image-section/clientlibs/site/resources/shapes/blobClipV1.svg#blobClipV1");
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
}
.blob-image-section__blob-primary img,
.blob-image-section__blob-primary video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Icon Badge Overlay */
.blob-image-section__icon-badge {
  position: absolute;
  width: 48px;
  height: 48px;
  background: var(--blob-image-section-icon-badge-bg, #8b5cf6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
  z-index: 2;
  color: var(--blob-image-section-icon-badge-color, #ffffff);
}
.blob-image-section__icon-badge img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
.blob-image-section__icon-badge--circle {
  border-radius: 50%;
}
/* Icon Badge Position Variants */
.blob-image-section__icon-badge--top-right {
  top: 10px;
  right: 10px;
}
.blob-image-section__icon-badge--top-left {
  top: 10px;
  left: 10px;
}
.blob-image-section__icon-badge--bottom-right {
  bottom: 10px;
  right: 10px;
}
.blob-image-section__icon-badge--bottom-left {
  bottom: 10px;
  left: 10px;
}

/* Overlay Image (Circular) */
.blob-image-section__overlay-image {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--blob-image-section-card-bg, #ffffff);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  z-index: 2;
}
.blob-image-section__overlay-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blob-image-section__overlay-image--top-right {
  top: -10px;
  right: -10px;
}
.blob-image-section__overlay-image--bottom-right {
  bottom: -10px;
  right: 10%;
}
.blob-image-section__overlay-image--bottom-left {
  bottom: -10px;
  left: 10%;
}
.blob-image-section__overlay-image--top-left {
  top: -10px;
  left: -10px;
}

/* CTA Overlay Container */
.blob-image-section__overlay-cta {
  position: absolute;
  z-index: 2;
}
.blob-image-section__overlay-cta--top-right {
  top: 20px;
  right: 10px;
}
.blob-image-section__overlay-cta--top-left {
  top: 20px;
  left: 10px;
}
.blob-image-section__overlay-cta--bottom-right {
  bottom: 20px;
  right: 10px;
}
.blob-image-section__overlay-cta--bottom-left {
  bottom: 20px;
  left: 10px;
}
.blob-image-section__overlay-cta--bottom-center {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

/* Overlay Card */
.blob-image-section__overlay-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 12px 12px;
  background: var(--blob-image-section-overlay-card-bg, #ffffff);
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  z-index: 2;
}
.blob-image-section__overlay-card--bottom-right {
  bottom: 20px;
  right: -20px;
}
.blob-image-section__overlay-card--top-right {
  top: 20px;
  right: -20px;
}
.blob-image-section__overlay-card--bottom-left {
  bottom: 20px;
  left: -20px;
}
.blob-image-section__overlay-card--top-left {
  top: 20px;
  left: -20px;
}

.blob-image-section__overlay-card-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.blob-image-section__overlay-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blob-image-section__overlay-card-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.blob-image-section__overlay-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--standard-primary-site-text-color, #111827);
  margin: 0;
  white-space: nowrap;
}

.blob-image-section__overlay-card-subtitle {
  font-size: 12px;
  color: var(--standard-secondary-site-text-color, #6b7280);
  margin: 0;
  white-space: nowrap;
}

/* ==========================================================================
   Shape Pattern Variants
   ========================================================================== */
.blob-image-section--shape-v1 .blob-image-section__blob-primary {
  clip-path: url("../components/content/blob-image-section/clientlibs/site/resources/shapes/blobClipV1.svg#blobClipV1");
}

.blob-image-section--shape-v2 .blob-image-section__blob-primary {
  clip-path: url("../components/content/blob-image-section/clientlibs/site/resources/shapes/blobClipV2.svg#blobClipV2");
  aspect-ratio: 4/3;
}

.blob-image-section--shape-v3 .blob-image-section__blob-primary {
  clip-path: url("../components/content/blob-image-section/clientlibs/site/resources/shapes/blobClipV3.svg#blobClipV3");
  aspect-ratio: 1/1;
}

.blob-image-section--shape-v4 .blob-image-section__blob-primary {
  clip-path: url("../components/content/blob-image-section/clientlibs/site/resources/shapes/blobClipV4.svg#blobClipV4");
  aspect-ratio: 3/4;
}

.blob-image-section--shape-v5 .blob-image-section__blob-primary {
  clip-path: url("../components/content/blob-image-section/clientlibs/site/resources/shapes/blobClipV5.svg#blobClipV5");
  aspect-ratio: 4/3;
}

.blob-image-section--shape-v6 .blob-image-section__blob-primary {
  clip-path: url("../components/content/blob-image-section/clientlibs/site/resources/shapes/blobClipV6.svg#blobClipV6");
  aspect-ratio: 4/3;
}

/* ==========================================================================
   Image Left Layout
   ========================================================================== */
.blob-image-section--image-left .blob-image-section__card {
  padding: 40px 0;
}
.blob-image-section--image-left .blob-image-section__images {
  order: -1;
}
.blob-image-section--image-left .blob-image-section__blob-primary {
  max-width: 500px;
  aspect-ratio: 5/4;
}
.blob-image-section--image-left .blob-image-section__icon-badge {
  bottom: 20px;
  left: 20px;
}

.blob-image-section--no-card .blob-image-section__card {
  padding: 40px 0;
}

/* ==========================================================================
   Responsive Styles - Tablet (768px+)
   ========================================================================== */
@media (min-width: 768px) {
  .blob-image-section {
    padding: 56px 24px;
  }
  .blob-image-section__card {
    padding: 56px;
  }
  .blob-image-section__layout {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
  .blob-image-section__content {
    flex: 1;
    max-width: 50%;
  }
  .blob-image-section__images {
    flex: 1;
    min-height: 360px;
  }
  .blob-image-section__blob-primary {
    max-width: 420px;
  }
  .blob-image-section__overlay-image {
    width: 120px;
    height: 120px;
  }
  .blob-image-section__icon-badge {
    width: 52px;
    height: 52px;
  }
  .blob-image-section__icon-badge img {
    width: 26px;
    height: 26px;
  }
  .blob-image-section--image-left .blob-image-section__layout {
    flex-direction: row;
  }
  .blob-image-section--image-left .blob-image-section__images {
    order: -1;
  }
  .blob-image-section--image-left .blob-image-section__blob-primary {
    max-width: 480px;
  }
}

/* ==========================================================================
   Responsive Styles - Desktop (1024px+)
   ========================================================================== */
@media (min-width: 1024px) {
  .blob-image-section__card {
    padding: 64px 80px;
  }
  .blob-image-section__title {
    font-size: 48px;
  }
  .blob-image-section__content {
    gap: 24px;
  }
  .blob-image-section__images {
    min-height: 400px;
  }
  .blob-image-section__blob-primary {
    max-width: 480px;
  }
  .blob-image-section__overlay-image {
    width: 140px;
    height: 140px;
  }
  .blob-image-section__icon-badge {
    width: 56px;
    height: 56px;
  }
  .blob-image-section__icon-badge img {
    width: 28px;
    height: 28px;
  }
  .blob-image-section__overlay-card {
    padding: 14px 24px 14px 14px;
  }
  .blob-image-section__overlay-card--bottom-right {
    right: -30px;
  }
  .blob-image-section__overlay-card-image {
    width: 56px;
    height: 56px;
  }
  .blob-image-section--image-left .blob-image-section__card {
    padding: 64px 0;
  }
  .blob-image-section--image-left .blob-image-section__blob-primary {
    max-width: 560px;
  }
  .blob-image-section--image-left .blob-image-section__icon-badge {
    bottom: 30px;
    left: 30px;
  }
  .blob-image-section--no-card .blob-image-section__card {
    padding: 64px 0;
  }
}

/* ==========================================================================
   Responsive Styles - Large Desktop (1200px+)
   ========================================================================== */
@media (min-width: 1200px) {
  .blob-image-section__layout {
    gap: 40px;
  }
  .blob-image-section__blob-primary {
    max-width: 520px;
  }
  .blob-image-section--image-left .blob-image-section__blob-primary {
    max-width: 600px;
  }
}

/* ==========================================================================
   CTA Pill Button Styles
   A pill-shaped button with text + circular icon container with arrow.
   Note: CTA pill variables (--cta-pill-*) are defined in theme CSS files
   ========================================================================== */
.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  background-color: var(--cta-pill-bg, #000000);
  color: var(--cta-pill-text, #ffffff);
  border-radius: 9999px;
  padding: 4px 4px 4px 24px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  border: none;
}
.cta-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cta-pill-hover-bg, #333333);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: -1;
  border-radius: 9999px;
}
.cta-pill:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.cta-pill:hover::before {
  transform: scaleX(1);
}
.cta-pill:hover .cta-pill__icon {
  transform: translateX(4px);
}
.cta-pill:visited {
  color: var(--cta-pill-text, #ffffff);
}

.cta-pill__text {
  position: relative;
  z-index: 1;
}

.cta-pill__icon {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background-color: var(--cta-pill-icon-bg, #ffffff);
  color: var(--cta-pill-icon-color, #000000);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}
.cta-pill__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* CTA Pill Responsive */
@media (max-width: 768px) {
  .cta-pill {
    padding: 4px 4px 4px 20px;
    font-size: 14px;
  }
  .cta-pill__icon {
    width: 38px;
    height: 38px;
    margin-left: 12px;
  }
  .cta-pill__icon svg {
    width: 18px;
    height: 18px;
  }
}

/**
 * Comparison Component CSS
 * Styles for the comparison grid with three columns
 */

/* ============================================
   Comparison Base Styles
   ============================================ */
.comparison {
    width: 100%;
    padding: 28px 20px;
    color: var(--standard-primary-site-text-color, #111827);
}

/* Background only applied with modifier class */
.comparison--with-bg {
    background: var(--comparison-bg, var(--site-body-bg, #ffffff));
}

.comparison__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison__title {
    margin: 0 0 20px;
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

/* ============================================
   Comparison Grid Styles
   ============================================ */
.comparison__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-left: 1px solid var(--comparison-divider, var(--services-divider-color, rgba(0, 0, 0, 0.12)));
    border-right: 1px solid var(--comparison-divider, var(--services-divider-color, rgba(0, 0, 0, 0.12)));
}

.comparison__col {
    padding: 28px 28px 20px;
    min-height: 360px;
    position: relative;
    background: var(--comparison-col-bg, #ffffff);
    border-radius: 7px;
}

.comparison__col + .comparison__col {
    border-left: 1px solid var(--comparison-divider, var(--services-divider-color, rgba(0, 0, 0, 0.12)));
}

/* ============================================
   Column Heading Styles
   ============================================ */
.comparison__heading {
    margin: 0 0 8px;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.comparison__heading-num {
    font-variant-numeric: tabular-nums;
    margin-right: 8px;
}

/* ============================================
   Column Description Styles
   ============================================ */
.comparison__desc {
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--standard-secondary-site-text-color, #6b7280);
    max-width: 340px;
}

/* ============================================
   List Item Styles
   ============================================ */
.comparison__list {
    margin: 0;
    padding: 22px 0 0;
    list-style: none;
    border-top: 1px dashed var(--comparison-dash, var(--services-divider-color, rgba(0, 0, 0, 0.12)));
}

.comparison__item {
    padding: 10px 0;
    font-size: 14px;
    color: color-mix(in srgb, var(--standard-primary-site-text-color, #111827) 62%, transparent);
}

.comparison__item + .comparison__item {
    border-top: 1px dashed var(--comparison-dash, var(--services-divider-color, rgba(0, 0, 0, 0.12)));
}

/* ============================================
   Dark Theme Support
   ============================================ */
.theme-dark .comparison,
.comparison.theme-dark {
    --comparison-divider: var(--services-divider-color, rgba(255, 255, 255, 0.12));
    --comparison-dash: var(--services-divider-color, rgba(255, 255, 255, 0.12));
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 900px) {
    .comparison__title {
        font-size: 38px;
    }

    .comparison__heading {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .comparison {
        padding: 22px 10px;
    }

    .comparison__title {
        font-size: 34px;
        margin-bottom: 16px;
    }

    .comparison__grid {
        grid-template-columns: 1fr;
        border-left: none;
        border-right: none;
    }

    .comparison__col {
        padding: 22px 16px 16px;
        min-height: 0;
    }

    .comparison__col + .comparison__col {
        border-left: none;
        border-top: 1px solid var(--comparison-divider, var(--services-divider-color, rgba(0, 0, 0, 0.12)));
    }

    .comparison__desc {
        max-width: none;
    }
}

/**
 * Quote Component CSS
 * Styles for the quote section with author attribution
 */

/* ============================================
   Quote Base Styles
   ============================================ */
.quote {
    width: 100%;
    padding: 28px 20px;
    color: var(--standard-primary-site-text-color, #111827);
}

.quote__inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

/* ============================================
   Quote Card Styles
   ============================================ */
.quote__card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 28px 30px 26px;
    color: var(--standard-primary-site-text-color, #111827);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

/* Background only applied with modifier class on parent */
.quote--with-bg .quote__card {
    background: var(--quote-bg, var(--site-body-bg, #ffffff));
}

/* Subtle glow effect */
.quote__card::before {
    content: "";
    position: absolute;
    inset: -40px;
    background: var(--quote-card-glow, radial-gradient(closest-side at 82% 28%, rgba(76, 0, 255, 0.34), transparent 60%), radial-gradient(closest-side at 92% 10%, rgba(0, 168, 255, 0.22), transparent 58%));
    pointer-events: none;
}

.quote__card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.theme-light .quote__card::after {
    border-color: rgba(0, 0, 0, 0.06);
}

/* ============================================
   Quote Content Styles
   ============================================ */
.quote__content {
    position: relative;
    z-index: 1;
}

.quote__label {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    opacity: 0.7;
    color: var(--standard-secondary-site-text-color, #6b7280);
    margin-bottom: 14px;
}

/* ============================================
   Quote Text Styles
   ============================================ */
.quote__text {
    margin: 0;
    font-family: "Instrument Serif", "Hubot Sans", "Framer Display", serif;
    font-size: clamp(34px, 4.2vw, 54px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--standard-primary-site-text-color, #111827);
}

.quote__text-muted {
    color: var(--standard-secondary-site-text-color, #6b7280);
    opacity: 0.7;
}

/* ============================================
   Quote Meta / Author Attribution
   ============================================ */
.quote__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 26px;
}

/* ============================================
   Quote Avatar Styles
   ============================================ */
.quote__avatar {
    width: 44px;
    height: 44px;
    border-radius: 9999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.theme-light .quote__avatar {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.10);
}

.quote__avatar svg,
.quote__avatar-icon {
    width: 100%;
    height: 100%;
    display: block;
}

.quote__avatar-icon[data-svg-inlined] {
    color: var(--standard-primary-site-text-color, #111827);
}

/* ============================================
   Quote Byline Styles
   ============================================ */
.quote__byline {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.quote__name {
    font-size: 14px;
    font-weight: 500;
    color: var(--standard-primary-site-text-color, #111827);
}

.quote__org {
    font-size: 13px;
    color: var(--standard-secondary-site-text-color, #6b7280);
    opacity: 0.85;
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 520px) {
    .quote__card {
        padding: 22px 20px;
        border-radius: 18px;
    }

    .quote__meta {
        margin-top: 20px;
    }
}

/**
 * Services Component CSS
 * Styles for the services section with icon cards
 */

/* ============================================
   Services Base Styles
   ============================================ */
.services {
    width: 100%;
    padding: 40px 20px;
    color: var(--standard-primary-site-text-color, #111827);
}

/* Background only applied with modifier class */
.services--with-bg {
    background: var(--services-bg, var(--site-body-bg));
}

.services__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.services__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* ============================================
   Services Title Styles
   ============================================ */
.services__title {
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1.05;
    font-weight: 400;
    margin: 0;
    letter-spacing: -0.02em;
}

/* ============================================
   Services Items Grid
   ============================================ */
.services__items {
    display: grid;
    grid-template-columns: 1fr;
}

/* ============================================
   Service Item Card Styles
   ============================================ */
.services__item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px dashed var(--services-divider-color, rgba(0, 0, 0, 0.12));
}

.services__item:first-child {
    border-top: 1px dashed var(--services-divider-color, rgba(0, 0, 0, 0.12));
}

/* ============================================
   Service Icon Styles
   ============================================ */
.services__icon {
    width: 56px;
    height: 56px;
    display: block;
    color: var(--standard-primary-site-text-color, #111827);
    opacity: 0.75;
    transition: color 0.3s ease;
}

/* Styles for inlined SVGs - enables theme-based color changes */
.services__icon[data-svg-inlined] {
    stroke: currentColor;
    fill: none;
}

.services__icon[data-svg-inlined] [fill="currentColor"] {
    fill: currentColor;
}

/* ============================================
   Service Item Title Styles
   ============================================ */
.services__item-title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
    margin: 0 0 8px;
    color: var(--standard-primary-site-text-color, #111827);
}

/* ============================================
   Service Item Description Styles (RTE Content)
   font-synthesis: allows browser to synthesize bold/italic when
   custom fonts lack a dedicated bold face.
   ============================================ */
.services__item-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
    color: var(--standard-secondary-site-text-color, #6b7280);
    font-synthesis: weight style;
}

.services__item-desc p {
    margin: 0 0 0.75em;
}

.services__item-desc p:last-child {
    margin-bottom: 0;
}

.services__item-desc p:first-child,
.services__item-desc > p:first-child {
    margin-top: 0;
}

.services__item-desc strong,
.services__item-desc b {
    font-weight: 700;
    color: inherit;
    text-shadow: 0.5px 0 0 currentColor, -0.5px 0 0 currentColor;
}

.services__item-desc em,
.services__item-desc i {
    font-style: italic;
}

.services__item-desc a {
    color: var(--services-link-color, #3b82f6);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.services__item-desc a:hover {
    text-decoration-thickness: 2px;
}

.services__item-desc ul,
.services__item-desc ol {
    margin: 0.75em 0;
    padding-left: 1.5em;
}

.services__item-desc ul {
    list-style-type: disc;
}

.services__item-desc ol {
    list-style-type: decimal;
}

.services__item-desc li {
    margin-bottom: 0.25em;
}

.services__item-desc blockquote {
    margin: 1em 0;
    padding: 0.75em 1.25em;
    border-left: 4px solid var(--blockquote-border-color, #6366f1);
    background: var(--blockquote-bg, rgba(99, 102, 241, 0.08));
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--standard-secondary-site-text-color, #6b7280);
}

.services__item-desc blockquote p {
    margin: 0;
}

.services__item-desc h1 {
    font-size: 1.5em;
    margin: 1em 0 0.5em;
    font-weight: 600;
    color: inherit;
}

.services__item-desc h2 {
    font-size: 1.35em;
    margin: 1em 0 0.5em;
    font-weight: 600;
    color: inherit;
}

.services__item-desc h3 {
    font-size: 1.2em;
    margin: 0.9em 0 0.5em;
    font-weight: 600;
    color: inherit;
}

.services__item-desc h4,
.services__item-desc h5,
.services__item-desc h6 {
    font-size: 1.1em;
    margin: 0.8em 0 0.4em;
    font-weight: 600;
    color: inherit;
}

.services__item-desc pre {
    margin: 0.75em 0;
    padding: 1em;
    background: var(--services-pre-bg, rgba(0, 0, 0, 0.05));
    border-radius: 8px;
    font-family: ui-monospace, monospace;
    font-size: 0.9em;
    overflow-x: auto;
}

.services__item-desc sub,
.services__item-desc sup {
    font-size: 0.75em;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

.services__item-desc sup {
    vertical-align: super;
}

.services__item-desc sub {
    vertical-align: sub;
}

/* ============================================
   Responsive Styles - Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
    .services {
        padding: 56px 24px;
    }

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

    .services__items {
        grid-template-columns: 1fr 1fr;
        column-gap: 64px;
        row-gap: 0;
        border-top: 1px dashed var(--services-divider-color, rgba(0, 0, 0, 0.12));
    }

    .services__item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 40px 0;
        border-top: none;
        position: relative;
    }

    .services__item:nth-child(-n+2) {
        border-bottom: 1px dashed var(--services-divider-color, rgba(0, 0, 0, 0.12));
    }

    .services__item:nth-child(odd) {
        padding-right: 64px;
    }

    .services__item:nth-child(even) {
        padding-left: 64px;
    }

    .services__item:nth-child(odd)::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 1px;
        background: repeating-linear-gradient(to bottom, var(--services-divider-color, rgba(0, 0, 0, 0.12)) 0 2px, transparent 2px 6px);
        opacity: 0.7;
    }

    .services__icon {
        width: 64px;
        height: 64px;
        opacity: 0.85;
    }

    .services__item-title {
        font-size: 22px;
    }
}

/* ============================================
   Responsive Styles - Desktop (1100px+)
   ============================================ */
@media (min-width: 1100px) {
    .services__layout {
        grid-template-columns: 360px 1fr;
        gap: 0;
        align-items: start;
    }

    .services__items {
        border-top: none;
        padding-left: 64px;
        position: relative;
    }

    .services__items::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 1px;
        background: repeating-linear-gradient(to bottom, var(--services-divider-color, rgba(0, 0, 0, 0.12)) 0 2px, transparent 2px 6px);
        opacity: 0.7;
    }

    .services__item:nth-child(odd) {
        padding-right: 56px;
    }

    .services__item:nth-child(even) {
        padding-left: 56px;
    }
}

/**
 * Two Tone Text Teaser Component CSS
 * Styles for the two-tone text teaser with primary/secondary text and CTA button
 */

/* ============================================
   Two Tone Text Teaser Styles
   ============================================ */
.two-tone-text-teaser {
    width: 100%;
    padding: 20px;
}

/* Background only applied with modifier class */
/* Dark theme with background modifier */
.theme-dark .two-tone-text-teaser--with-bg,
.two-tone-text-teaser.theme-dark.two-tone-text-teaser--with-bg {
    background-color: var(--two-tone-text-teaser-bg, #1e1e1e);
}

/* Light theme with background modifier */
.theme-light .two-tone-text-teaser--with-bg,
.two-tone-text-teaser.theme-light.two-tone-text-teaser--with-bg {
    background-color: var(--two-tone-text-teaser-bg, var(--site-body-bg));
}

@media (max-width: 768px) {
    .two-tone-text-teaser {
        padding: 10px;
    }
}

.two-tone-text-teaser__container {
    max-width: 980px;
    margin: 0 auto;
}

.two-tone-text-teaser__cta {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

@charset "UTF-8";
.lead-banner {
  width: 100%;
  height: var(--lead-banner-height, 600px);
  min-height: var(--lead-banner-height, 600px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: linear-gradient(180deg, var(--lead-banner-gradient-start, #000000) 0%, var(--lead-banner-gradient-stop-25, #4a148c) 25%, var(--lead-banner-gradient-stop-50, #7b2cbf) 50%, var(--lead-banner-gradient-stop-75, #c084fc) 75%, var(--lead-banner-gradient-end, #ffffff) 100%);
  padding: 24px 20px;
  box-sizing: border-box;
  color: var(--lead-banner-text-primary, #ffffff);
}

.lead-banner__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  z-index: 1;
}

.lead-banner__main-headline {
  display: flex;
  align-items: center;
  gap: var(--lead-banner-media-gap, 24px);
  font-family: "Hubot Sans", "Framer Display", sans-serif;
  font-size: clamp(32px, 8vw, 72px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--lead-banner-text-primary, #ffffff);
  margin: 0;
}

/* Stacked image deck (replaces the unicorn emoji) */
.lead-banner__media-stack {
  width: 100px;
  height: 100px;
  position: relative;
  flex-shrink: 0;
}

.lead-banner__stack-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 18px;
  box-sizing: border-box;
  border: 1px solid var(--lead-banner-text-secondary, #a78bfa);
  object-fit: cover;
  background: rgba(0, 0, 0, 0.12);
  transform: translate(var(--stack-x, 0px), var(--stack-y, 0px)) scale(var(--stack-scale, 1));
  opacity: var(--stack-opacity, 1);
  z-index: var(--stack-z, 1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, var(--stack-shadow-alpha, 0.22));
  transition: transform 0.55s ease, opacity 0.55s ease, box-shadow 0.55s ease;
  will-change: transform, opacity;
}

.lead-banner__stack-item--moving {
  animation: leadBannerSendBack 0.55s ease forwards;
}

@keyframes leadBannerSendBack {
  0% {
    transform: translate(var(--stack-x, 0px), var(--stack-y, 0px)) scale(var(--stack-scale, 1)) rotate(0deg);
    opacity: 1;
  }
  /* Fly left first */
  45% {
    transform: translate(-86px, 0px) scale(0.96) rotate(-8deg);
    opacity: 1;
  }
  /* Then drop down while fading out (behind the stack) */
  85% {
    transform: translate(-86px, 62px) scale(0.92) rotate(-14deg);
    opacity: 0;
  }
  100% {
    transform: translate(-86px, 62px) scale(0.92) rotate(-14deg);
    opacity: 0;
  }
}
.lead-banner__headline-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lead-banner__headline-primary {
  color: var(--lead-banner-text-primary, #ffffff);
}

.lead-banner__headline-secondary {
  color: var(--lead-banner-text-secondary, #a78bfa);
  font-size: 0.60em;
  opacity: 1;
  white-space: pre-wrap;
}
.lead-banner__headline-secondary .char {
  display: inline-block;
  opacity: 0;
  filter: blur(var(--lead-banner-char-blur-start, 6px));
  animation: fadeInCharOpacity var(--lead-banner-char-fade-duration, 0.3s) ease-in forwards, clearCharBlur var(--lead-banner-char-blur-duration, 0.7s) ease-out forwards;
}
.lead-banner__headline-secondary .char:empty::before {
  content: " ";
}

@keyframes fadeInCharOpacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes clearCharBlur {
  from {
    filter: blur(var(--lead-banner-char-blur-start, 6px));
  }
  to {
    filter: blur(0px);
  }
}
.lead-banner__secondary-text {
  font-family: "Hubot Sans", "Framer Display", sans-serif;
  font-size: clamp(16px, 2.5vw, 24px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--lead-banner-secondary-text-color, #ffffff);
  margin: 0;
  max-width: 400px;
  align-self: flex-end;
}

@media (min-width: 768px) {
  .lead-banner {
    padding: 48px 40px;
  }
  .lead-banner__content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
  }
  .lead-banner__main-headline {
    flex: 1;
  }
  .lead-banner__secondary-text {
    align-self: flex-start;
    margin-top: 0;
  }
}
/* Mobile tweaks */
@media (max-width: 767px) {
  .lead-banner {
    height: var(--lead-banner-height-mobile, var(--lead-banner-height, 600px));
    min-height: var(--lead-banner-height-mobile, var(--lead-banner-height, 600px));
  }
  .lead-banner__headline-primary {
    font-size: clamp(26px, 7.2vw, 44px);
    line-height: 1.12;
  }
  .lead-banner__headline-secondary {
    font-size: 0.50em;
  }
  .lead-banner__media-stack {
    margin-left: 10px;
  }
}


@charset "UTF-8";
.header[data-component=header] {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--header-background-color, #0f172a);
  height: var(--header-height, 60px);
  color: var(--primary-text-color, #f8fafc);
  padding: 0 20px;
  position: relative;
}

.header__menu-btn,
.header__sidebar-collapse {
  flex-shrink: 0;
}
.header__menu-btn.btn-icon-only,
.header__sidebar-collapse.btn-icon-only {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}
.header__menu-btn.btn-icon-only:hover, .header__menu-btn.btn-icon-only:focus-visible,
.header__sidebar-collapse.btn-icon-only:hover,
.header__sidebar-collapse.btn-icon-only:focus-visible {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  background: transparent !important;
}
.header__menu-btn.btn-icon-only::before,
.header__sidebar-collapse.btn-icon-only::before {
  display: none;
}

.header__menu-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.header__menu-icon-expand,
.header__sidebar-collapse-icon {
  width: 16px;
  height: 16px;
  display: block;
  color: inherit;
}

.header__logo {
  margin-left: 0;
  margin-right: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;
  padding: 10px 0;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.2s ease;
  outline: none;
  position: relative;
  box-sizing: border-box;
  min-width: 0;
}

.header__logo:hover {
  opacity: 0.8;
}

.header__logo:focus {
  outline: none;
}

.header__logo:focus-visible {
  outline: 2px solid var(--primary-text-color, #f8fafc);
  outline-offset: 2px;
  border-radius: 4px;
}

.header__logo-img {
  height: calc(var(--header-height, 100px) - 20px);
  max-height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.header__logo-title {
  margin: 0;
  padding: 0;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-text-color, #0f172a);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(42vw, 280px);
}

.header__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.header__actions-group {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-shrink: 0;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header__actions:empty {
  display: none;
}

.header__action-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.header__theme-toggle {
  flex-shrink: 0;
}

.header__kebab-btn {
  display: none;
  flex-shrink: 0;
  margin-left: auto;
}
.header__kebab-btn.btn-icon-only {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}
.header__kebab-btn.btn-icon-only:hover, .header__kebab-btn.btn-icon-only:focus-visible {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  background: transparent !important;
}
.header__kebab-btn.btn-icon-only::before {
  display: none;
}

.header__kebab-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.header__theme-icon {
  width: 20px;
  height: 20px;
}

.header__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.header__subtitle {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--secondary-text-color, #cbd5e1);
}

.header__overlay {
  position: fixed;
  top: var(--header-overlay-top, var(--header-height, 100px));
  left: 0;
  right: 0;
  width: 100%;
  height: var(--header-overlay-height, calc(100vh - var(--header-height, 100px)));
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  color: var(--primary-text-color, #f8fafc);
  background: var(--header-background-color, #0f172a);
  padding: 0;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100%);
  transition: transform 0.35s ease, opacity 0.3s ease;
  overflow-y: auto;
}

.header__overlay--open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.header__overlay-content {
  width: 100%;
  min-height: 100%;
  background: var(--header-background-color, #0f172a);
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
  display: flex;
  flex-direction: column;
}

.header__overlay-columns {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 0;
}

.header__overlay-column {
  flex: 1;
  padding: 40px;
  overflow-y: auto;
}
.header__overlay-column--menu {
  border-right: 1px solid var(--header-overlay-column-divider-color, rgba(255, 255, 255, 0.1));
}
.header__overlay-column--options {
  border-right: 1px solid var(--header-overlay-column-divider-color, rgba(255, 255, 255, 0.1));
}

.header__overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.header__overlay-title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.header__overlay-body {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: var(--secondary-text-color, #e2e8f0);
}

.header__overlay-nav {
  width: 100%;
}

.header__overlay-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header__overlay-menu-item {
  margin-bottom: 8px;
  position: relative;
}

.header__overlay-menu-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 10px 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-text-color, #f8fafc);
  text-decoration: none;
  border-bottom: none;
  transition: color 0.25s ease, background-color 0.25s ease;
  cursor: default;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
}
.header__overlay-menu-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, var(--header-overlay-highlight, rgba(255, 255, 255, 0.08)) 35%, var(--header-overlay-highlight-strong, rgba(255, 255, 255, 0.16)) 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: 0;
}
.header__overlay-menu-link::after {
  z-index: 2;
}
.header__overlay-menu-link:hover::before, .header__overlay-menu-link:focus-visible::before {
  transform: translateX(0);
}
.header__overlay-menu-link:hover {
  color: var(--secondary-text-color, #ffc846);
  background-color: var(--header-overlay-hover-bg, rgba(255, 255, 255, 0.08));
}

a.header__overlay-menu-link {
  cursor: pointer;
}

.header__overlay-submenu {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 20px;
  display: none;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}
.header__overlay-submenu--level-3 {
  margin-left: 20px;
}
.header__overlay-submenu--open {
  display: block;
  opacity: 1;
  max-height: 1000px;
}

.header__overlay-submenu-item {
  margin-bottom: 4px;
  position: relative;
}

.header__overlay-submenu-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 400;
  color: var(--secondary-text-color, #cbd5e1);
  text-decoration: none;
  transition: color 0.25s ease, background-color 0.25s ease;
  cursor: default;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
}
.header__overlay-submenu-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, var(--header-overlay-highlight, rgba(255, 255, 255, 0.06)) 35%, var(--header-overlay-highlight-strong, rgba(255, 255, 255, 0.12)) 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: 0;
}
.header__overlay-submenu-link::after {
  z-index: 2;
}
.header__overlay-submenu-link:hover::before, .header__overlay-submenu-link:focus-visible::before {
  transform: translateX(0);
}
.header__overlay-submenu-link:hover {
  color: var(--primary-text-color, #f8fafc);
  background-color: var(--header-overlay-hover-bg, rgba(255, 255, 255, 0.08));
}

.header__overlay-link-desc {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--secondary-text-color, #cbd5e1);
}

a.header__overlay-submenu-link {
  cursor: pointer;
}

.header__overlay-menu-link--has-submenu::after,
.header__overlay-submenu-link--has-submenu::after {
  content: "›";
  position: absolute;
  left: 12px;
  top: 50%;
  right: auto;
  transform: translateY(-50%) rotate(0deg);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.header__overlay-menu-link--open::after,
.header__overlay-submenu-link--open::after {
  transform: translateY(-50%) rotate(90deg);
}

.header__overlay-menu-link--has-submenu {
  padding-left: 32px;
}

.header__overlay-submenu-link--has-submenu {
  padding-left: 32px;
}

.header__overlay-options-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header__overlay-option-item {
  margin-bottom: 24px;
}

.header__overlay-option-link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 14px 14px;
  border-radius: 12px;
  transition: opacity 0.25s ease, background-color 0.25s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
}
.header__overlay-option-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, var(--header-overlay-highlight, rgba(255, 255, 255, 0.08)) 35%, var(--header-overlay-highlight-strong, rgba(255, 255, 255, 0.16)) 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  z-index: 0;
}
.header__overlay-option-link > * {
  position: relative;
  z-index: 1;
}
.header__overlay-option-link:hover::before, .header__overlay-option-link:focus-visible::before {
  transform: translateX(0);
}
.header__overlay-option-link:hover {
  opacity: 0.8;
  background-color: var(--header-overlay-hover-bg, rgba(255, 255, 255, 0.08));
}

.header__overlay-option-title {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-text-color, #f8fafc);
  margin-bottom: 4px;
}

.header__overlay-option-subtitle {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--secondary-text-color, #cbd5e1);
}

.header__overlay-social {
  margin-top: 28px;
}

.header__overlay-social-title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-text-color, #f8fafc);
}

.header__overlay-social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.header__overlay-social-link {
  text-decoration: none;
}
.header__overlay-social-link:focus-visible {
  outline: 2px solid var(--primary-text-color, #f8fafc);
  outline-offset: 3px;
}

.header__overlay-social-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.header__overlay-articles {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.header__overlay-article-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.header__overlay-article {
  position: relative;
  width: 100%;
  min-height: 300px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.header__overlay-article-link:hover .header__overlay-article {
  transform: translateY(-4px);
}

.header__overlay-article-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.header__overlay-article-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--article-tile-overlay-bg, rgba(0, 0, 0, 0.5));
  padding: 10px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  pointer-events: none;
  transform: translateY(calc(100% - var(--article-collapsed-height, 60px)));
  transition: transform 0.8s ease, padding 0.8s ease;
  will-change: transform;
}
.header__overlay-article-link:hover .header__overlay-article-overlay {
  transform: translateY(0);
  padding: 24px;
  justify-content: flex-start;
}

.header__overlay-article-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-text-color, #f8fafc);
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 3;
  line-height: 1.4;
  width: 100%;
  transition: transform 0.8s ease;
}
.header__overlay-article-link:hover .header__overlay-article-title {
  transform: translateY(-10px);
}

.header__overlay-article-description {
  font-size: 14px;
  font-weight: 400;
  color: var(--secondary-text-color, #cbd5e1);
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 3;
  width: 100%;
  opacity: 0;
  transform: translateY(24px);
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  transition: opacity 0.8s ease 0.18s, transform 0.8s ease 0.18s, max-height 0.8s ease 0.18s, margin-top 0.8s ease 0.18s;
}
.header__overlay-article-link:hover .header__overlay-article-description {
  opacity: 1;
  transform: translateY(0);
  max-height: 240px;
  margin-top: 14px;
}

.header__sidebar-backdrop {
  display: none !important;
}

html {
  --header-sidebar-width: 300px;
  --header-sidebar-offset: 0px;
  box-sizing: border-box;
  padding-left: var(--header-sidebar-offset);
  transition: padding-left 0.28s ease;
}

@media (min-width: 1025px) {
  html.header-sidebar-split {
    --header-sidebar-offset: var(--header-sidebar-width, 300px);
  }
  html.header-sidebar-split .header[data-component=header][data-menu-variant=sidebar] .header__logo,
  html.header-sidebar-split .header[data-component=header][data-menu-variant=sidebar] .header__menu-btn {
    display: none !important;
  }
}
html.header-sidebar-resizing {
  transition: none;
}

.header__sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1200;
  display: flex;
  width: var(--header-sidebar-width, 300px);
  max-width: min(92vw, 560px);
  color: var(--primary-text-color, #0f172a);
  background: var(--site-body-bg, var(--header-sidebar-bg, #1e1e1e));
  border-right: 1px solid var(--header-sidebar-border, #e5e7eb);
  box-shadow: none;
  transform: translateX(-105%);
  transition: transform 0.28s ease;
  pointer-events: none;
}

.header__sidebar--open {
  transform: translateX(0);
  pointer-events: auto;
}

.header__sidebar-panel {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.header__sidebar-brand {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 20px 16px 16px;
}

.header__sidebar-brand-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
  padding: 0 36px;
}

.header__sidebar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.header__sidebar-logo-img {
  height: 56px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.header__sidebar-title {
  margin: 0;
  padding: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: var(--primary-text-color, #0f172a);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.header__sidebar-collapse {
  position: absolute;
  top: 12px;
  right: 10px;
  flex-shrink: 0;
}

.header__sidebar-search {
  padding: 0 16px 14px;
}

.header__sidebar-search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--header-sidebar-search-bg, #f3f4f6);
  border: 1px solid transparent;
  color: var(--primary-text-color, #0f172a);
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.header__sidebar-search-field:focus-within {
  border-color: var(--header-sidebar-accent, #111827);
  background: var(--header-sidebar-search-focus-bg, #ffffff);
}

.header__sidebar-search-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.55;
}

.header__sidebar-search-input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 14px;
}
.header__sidebar-search-input::placeholder {
  color: var(--secondary-text-color, #6b7280);
}

.header__sidebar-nav {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 4px 10px 24px;
}

.header__sidebar-group {
  margin-bottom: 8px;
}

.header__sidebar-group-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 10px;
  border: 0;
  background: transparent;
  color: var(--primary-text-color, #111827);
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 10px;
  text-align: left;
}
.header__sidebar-group-toggle > span {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
.header__sidebar-group-toggle:hover, .header__sidebar-group-toggle:focus-visible {
  background: var(--header-sidebar-hover-bg, rgba(15, 23, 42, 0.04));
}

.header__sidebar-group-chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: transform 0.2s ease;
  transform: rotate(-90deg);
}

.header__sidebar-group--open .header__sidebar-group-chevron {
  transform: rotate(0deg);
}

.header__sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0 0 6px;
  display: none;
}

.header__sidebar-list--standalone {
  display: block;
  padding-bottom: 4px;
}

.header__sidebar-group > .header__sidebar-list {
  padding-left: 18px;
}

.header__sidebar-group--open > .header__sidebar-list {
  display: block;
}

.header__sidebar-item {
  margin: 2px 0;
}

.header__sidebar-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 8px 12px 8px 14px;
  border-radius: 10px;
  color: var(--primary-text-color, #111827);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.header__sidebar-link:hover, .header__sidebar-link:focus-visible {
  background: var(--header-sidebar-hover-bg, rgba(15, 23, 42, 0.05));
}

.header__sidebar-link--active {
  background: var(--header-sidebar-active-bg, #f3f4f6);
  font-weight: 600;
}
.header__sidebar-link--active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 999px;
  background: var(--header-sidebar-accent, #111827);
}

.header__sidebar-link-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.85;
}

.header__sidebar-link-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.header__sidebar-resizer {
  flex: 0 0 6px;
  width: 6px;
  cursor: col-resize;
  touch-action: none;
  position: relative;
  background: transparent;
}
.header__sidebar-resizer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 2px;
  width: 1px;
  background: var(--header-sidebar-border, #d1d5db);
  transition: background-color 0.15s ease, width 0.15s ease, left 0.15s ease;
}
.header__sidebar-resizer:hover::after, .header__sidebar-resizer:focus-visible::after, .header__sidebar-resizer.header__sidebar-resizer--dragging::after {
  left: 1px;
  width: 3px;
  background: var(--header-sidebar-accent, #111827);
}

html.header-sidebar-resizing,
html.header-sidebar-resizing body {
  cursor: col-resize;
  user-select: none;
}

.theme-dark .header__sidebar,
html.theme-dark .header__sidebar {
  --header-sidebar-bg: var(--site-body-bg, #1e1e1e);
  --header-sidebar-border: rgba(255, 255, 255, 0.12);
  --header-sidebar-search-bg: rgba(255, 255, 255, 0.08);
  --header-sidebar-search-focus-bg: rgba(255, 255, 255, 0.12);
  --header-sidebar-hover-bg: rgba(255, 255, 255, 0.08);
  --header-sidebar-active-bg: rgba(255, 255, 255, 0.12);
  --header-sidebar-accent: #f8fafc;
  color: var(--primary-text-color, #f8fafc);
}

.theme-light .header__sidebar,
html.theme-light .header__sidebar {
  --header-sidebar-bg: var(--site-body-bg, #ffffff);
  --header-sidebar-border: #e5e7eb;
  --header-sidebar-search-bg: #f3f4f6;
  --header-sidebar-search-focus-bg: #ffffff;
  --header-sidebar-hover-bg: rgba(15, 23, 42, 0.04);
  --header-sidebar-active-bg: #f3f4f6;
  --header-sidebar-accent: #111827;
  color: var(--primary-text-color, #0f172a);
}

@media (max-width: 1024px) {
  .header__content {
    display: none;
  }
  .header[data-component=header] .header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    display: flex !important;
    z-index: 2;
  }
  html.header-sidebar-split {
    --header-sidebar-offset: 0px;
  }
  html.header-sidebar-split .header[data-component=header][data-menu-variant=sidebar] .header__logo,
  html.header-sidebar-split .header[data-component=header][data-menu-variant=sidebar] .header__menu-btn {
    display: flex !important;
  }
  .header__kebab-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
  }
  .header__actions-group {
    position: absolute;
    top: calc(100% + 4px);
    right: 12px;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    min-width: 180px;
    padding: 14px;
    border-radius: 12px;
    background: var(--header-background-color, #0f172a);
    border: 1px solid var(--header-sidebar-border, rgba(255, 255, 255, 0.12));
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1300;
  }
  .header__actions-group.header__actions-group--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .header__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }
  .header__action-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .header__theme-toggle {
    align-self: center;
  }
  .header__overlay-columns {
    flex-direction: column;
    height: auto;
  }
  .header__overlay-column {
    padding: 24px;
    flex: none;
    overflow: visible;
  }
  .header__overlay-column--menu {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header__overlay-column--options {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header__sidebar {
    top: var(--header-height, 60px);
    bottom: 0;
    width: 100vw;
    max-width: 100vw;
    --header-sidebar-width: 100vw;
    height: calc(100vh - var(--header-height, 60px));
    height: calc(100dvh - var(--header-height, 60px));
  }
  .header__sidebar-resizer {
    display: none !important;
  }
  .header__sidebar-brand {
    display: none !important;
  }
}

/*# sourceMappingURL=header.css.map */

/**
 * Site Banner Component CSS
 * Styles for the scrolling marquee banner with cycling messages
 */

/* ============================================
   Site Banner Base Styles
   ============================================ */
.site-banner {
    width: 100%;
    background: var(--site-banner-bg, red);
    color: var(--site-banner-text-color, var(--primary-text-color, #ffffff));
    font-size: var(--site-banner-font-size, 14px);
    line-height: 1.2;
    padding: 6px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* ============================================
   Viewport Container
   ============================================ */
.site-banner__viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    height: 1.2em;
}

/* ============================================
   Scrolling Text Styles
   ============================================ */
.site-banner__text {
    white-space: nowrap;
    padding-right: var(--site-banner-marquee-gap, 40px);
    font-weight: 200;
    display: inline-block;
    will-change: transform;
    position: absolute;
    left: 100%;
    animation: site-banner-scroll-rtl var(--site-banner-duration, 10s) linear infinite;
}

/* ============================================
   Text Formatting Styles
   ============================================ */
.site-banner__text strong,
.site-banner__text b {
    font-weight: 900;
    text-shadow: 0.5px 0 0 currentColor, -0.5px 0 0 currentColor;
}

.site-banner__text em,
.site-banner__text i {
    font-style: italic;
}

/* ============================================
   Badge Styles
   ============================================ */
.site-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 600;
    line-height: 1;
    vertical-align: middle;
    margin: 0 4px;
}

.site-badge.info {
    background: var(--site-badge-info-bg, rgba(59, 130, 246, 0.9));
    color: var(--site-badge-info-color, #ffffff);
}

.site-badge.success {
    background: var(--site-badge-success-bg, rgba(34, 197, 94, 0.9));
    color: var(--site-badge-success-color, #ffffff);
}

.site-badge.warning {
    background: var(--site-badge-warning-bg, rgba(234, 179, 8, 0.9));
    color: var(--site-badge-warning-color, #1f2937);
}

.site-badge.error {
    background: var(--site-badge-error-bg, rgba(239, 68, 68, 0.9));
    color: var(--site-badge-error-color, #ffffff);
}

.site-badge.primary {
    background: var(--site-badge-primary-bg, rgba(99, 102, 241, 0.9));
    color: var(--site-badge-primary-color, #ffffff);
}

.site-badge.secondary {
    background: var(--site-badge-secondary-bg, rgba(107, 114, 128, 0.9));
    color: var(--site-badge-secondary-color, #ffffff);
}

.site-badge.purple {
    background: var(--site-badge-purple-bg, rgba(139, 92, 246, 0.9));
    color: var(--site-badge-purple-color, #ffffff);
}

.site-badge.pink {
    background: var(--site-badge-pink-bg, rgba(236, 72, 153, 0.9));
    color: var(--site-badge-pink-color, #ffffff);
}

.site-badge.teal {
    background: var(--site-badge-teal-bg, rgba(20, 184, 166, 0.9));
    color: var(--site-badge-teal-color, #ffffff);
}

.site-badge.neutral {
    background: var(--site-badge-neutral-bg, rgba(255, 255, 255, 0.2));
    color: var(--site-badge-neutral-color, #ffffff);
}

/* ============================================
   Scroll Animation
   ============================================ */
@keyframes site-banner-scroll-rtl {
    from {
        left: 100%;
        transform: translateX(0);
    }
    to {
        left: 0;
        transform: translateX(-100%);
    }
}

/* ============================================
   Accessibility - Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .site-banner__text {
        animation: none;
        position: static;
        transform: none;
    }
}


.lead-media-section {
  width: 100%;
  padding: 280px 20px 40px;
  color: var(--standard-primary-site-text-color, #111827);
}
.lead-media-section--with-bg {
  background: var(--lead-media-section-bg);
}

.lead-media-section__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.lead-media-section__layout {
  position: relative;
}

.lead-media-section__card {
  background: var(--lead-media-section-card-bg, #2a2a2a);
  border-radius: 24px;
  padding: 100px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: visible;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 8px 32px rgba(0, 0, 0, 0.12);
}

.lead-media-section__icon-badge {
  width: 56px;
  height: 56px;
  background: var(--lead-media-section-icon-badge-bg, #3a3a3a);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lead-media-section-icon-badge-color, #ffffff);
}
.lead-media-section__icon-badge svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.lead-media-section__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lead-media-section__title {
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.1;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--standard-primary-site-text-color, #ffffff);
}

.lead-media-section__description {
  font-size: 15px;
  line-height: 1.65;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
  margin: 0;
  max-width: 440px;
}

.lead-media-section__cta {
  margin-top: 8px;
}
.lead-media-section__cta .cta-pill {
  --cta-pill-bg: var(--rating-cta-bg, #ffffff);
  --cta-pill-text: var(--rating-cta-text, #000000);
  --cta-pill-hover-bg: var(--rating-cta-hover-bg, #e0e0e0);
  --cta-pill-icon-bg: var(--rating-cta-icon-bg, #000000);
  --cta-pill-icon-color: var(--rating-cta-icon-color, #ffffff);
}

.lead-media-section__media {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  z-index: 2;
  transform: translateY(-70%);
}

.lead-media-section__media-frame {
  width: 100%;
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  background: var(--lead-media-section-media-bg, #1a1a1a);
  border: 10px solid var(--lead-media-section-media-border, rgba(255, 255, 255, 0.15));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.2);
}
.lead-media-section__media-frame img,
.lead-media-section__media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lead-media-section__media-frame video::-webkit-media-controls, .lead-media-section__media-frame video::-webkit-media-controls-enclosure, .lead-media-section__media-frame video::-webkit-media-controls-panel {
  display: none !important;
}

@media (min-width: 768px) {
  .lead-media-section {
    padding: 156px 24px;
    --lms-media-width: 300px;
    --lms-card-padding-right: 380px;
    --lms-card-padding-left: 380px;
    --lms-content-padding: 40px;
  }
  .lead-media-section__card {
    padding: 48px var(--lms-content-padding);
    padding-right: var(--lms-card-padding-right);
    gap: 28px;
    min-height: 380px;
    justify-content: center;
    z-index: 1;
  }
  .lead-media-section__media {
    right: calc((var(--lms-card-padding-right) - var(--lms-media-width)) / 2);
    top: -100px;
    bottom: -100px;
    width: var(--lms-media-width);
    transform: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lead-media-section__media-frame {
    max-width: var(--lms-media-width);
    aspect-ratio: auto;
    height: 100%;
    border-radius: 28px;
    border-width: 15px;
  }
  .lead-media-section--media-left .lead-media-section__card {
    padding-right: var(--lms-content-padding);
    padding-left: var(--lms-card-padding-left);
  }
  .lead-media-section--media-left .lead-media-section__media {
    right: auto;
    left: calc((var(--lms-card-padding-left) - var(--lms-media-width)) / 2);
  }
}
@media (min-width: 1024px) {
  .lead-media-section {
    --lms-media-width: 340px;
    --lms-card-padding-right: 440px;
    --lms-card-padding-left: 440px;
    --lms-content-padding: 48px;
  }
  .lead-media-section__card {
    padding: 56px var(--lms-content-padding);
    padding-right: var(--lms-card-padding-right);
    gap: 32px;
    min-height: 440px;
  }
  .lead-media-section__icon-badge {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }
  .lead-media-section__icon-badge svg {
    width: 28px;
    height: 28px;
  }
  .lead-media-section__title {
    font-size: 44px;
  }
  .lead-media-section__description {
    font-size: 16px;
  }
  .lead-media-section__media-frame {
    border-radius: 32px;
  }
  .lead-media-section--media-left .lead-media-section__card {
    padding-right: var(--lms-content-padding);
    padding-left: var(--lms-card-padding-left);
  }
}
@media (min-width: 1200px) {
  .lead-media-section {
    --lms-media-width: 380px;
    --lms-card-padding-right: 500px;
    --lms-card-padding-left: 500px;
    --lms-content-padding: 56px;
  }
  .lead-media-section__card {
    padding: 64px var(--lms-content-padding);
    padding-right: var(--lms-card-padding-right);
    min-height: 500px;
  }
  .lead-media-section--media-left .lead-media-section__card {
    padding-right: var(--lms-content-padding);
    padding-left: var(--lms-card-padding-left);
  }
}
@media (min-width: 1400px) {
  .lead-media-section {
    --lms-media-width: 420px;
    --lms-card-padding-right: 560px;
    --lms-card-padding-left: 560px;
  }
  .lead-media-section__card {
    padding-right: var(--lms-card-padding-right);
    min-height: 540px;
  }
  .lead-media-section--media-left .lead-media-section__card {
    padding-left: var(--lms-card-padding-left);
  }
}

.count-up {
  width: 100%;
  padding: 80px 20px;
  color: var(--standard-primary-site-text-color, #ffffff);
}
.count-up--with-bg {
  background: var(--count-up-bg, #1a1a1a);
}

.theme-dark .count-up,
.count-up.theme-dark {
  color: var(--standard-primary-site-text-color, #ffffff);
}

.theme-dark .count-up--with-bg,
.count-up.theme-dark.count-up--with-bg {
  background: var(--count-up-bg, #1a1a1a);
}

.theme-light .count-up,
.count-up.theme-light {
  color: var(--standard-primary-site-text-color, #111827);
}

.theme-light .count-up--with-bg,
.count-up.theme-light.count-up--with-bg {
  background: var(--count-up-bg, #f8f9fa);
}

.count-up__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.count-up__header {
  text-align: center;
  margin-bottom: 48px;
}

.count-up__title {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  font-weight: 600;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  color: var(--standard-primary-site-text-color, #ffffff);
}

.count-up__subtitle {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.5;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.count-up__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.count-up__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: var(--count-up-card-bg, #2a2a2a);
  border-radius: 16px;
  min-height: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.count-up__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.count-up__value {
  font-size: clamp(56px, 10vw, 80px);
  font-weight: 700;
  line-height: 1;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
  color: var(--standard-primary-site-text-color, #ffffff);
  font-variant-numeric: tabular-nums;
}

.count-up__label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
  margin: 0;
}

.theme-light .count-up__item,
.count-up.theme-light .count-up__item {
  background: var(--count-up-card-bg, #ffffff);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.theme-light .count-up__item:hover,
.count-up.theme-light .count-up__item:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

@media (min-width: 640px) {
  .count-up {
    padding: 100px 24px;
  }
  .count-up__header {
    margin-bottom: 56px;
  }
  .count-up__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .count-up__item:first-child {
    grid-column: span 2;
  }
  .count-up__value {
    font-size: clamp(64px, 12vw, 96px);
  }
}
@media (min-width: 1024px) {
  .count-up {
    padding: 120px 24px;
  }
  .count-up__header {
    margin-bottom: 64px;
  }
  .count-up__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .count-up__item:first-child {
    grid-column: span 1;
  }
  .count-up__item {
    padding: 56px 32px;
    min-height: 240px;
  }
  .count-up__value {
    font-size: 80px;
    margin-bottom: 20px;
  }
  .count-up__label {
    font-size: 13px;
  }
}

.faq {
  width: 100%;
  padding: 40px 20px;
  color: var(--standard-primary-site-text-color, #111827);
}
.faq--with-bg {
  background: var(--faq-bg, var(--site-body-bg));
}

.faq__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.faq__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--standard-primary-site-text-color, #111827);
  margin: 0 0 32px;
  text-align: center;
}

.faq__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  background: var(--faq-item-bg, #2a2a2a);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq__item:hover {
  background: var(--faq-item-hover-bg, #333333);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  font-family: inherit;
}

.faq__question-text {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  color: var(--standard-primary-site-text-color, #ffffff);
  margin: 0;
  flex: 1;
}

.faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--standard-secondary-site-text-color, #a2a2a2);
}

.faq__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.faq__item[data-expanded=true] .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item[data-expanded=true] .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer-inner {
  overflow: hidden;
}

.faq__answer-content {
  padding: 0 24px 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
  margin: 0;
}

/* RTE Content Styles - Support for Rich Text Editor HTML elements */
.faq__answer-content p {
  margin: 0 0 1em;
}

.faq__answer-content p:last-child {
  margin-bottom: 0;
}

.faq__answer-content h4,
.faq__answer-content h5,
.faq__answer-content h6 {
  color: var(--standard-primary-site-text-color, #ffffff);
  margin: 1.5em 0 0.5em;
  font-weight: 600;
  line-height: 1.3;
}

.faq__answer-content h4:first-child,
.faq__answer-content h5:first-child,
.faq__answer-content h6:first-child {
  margin-top: 0;
}

.faq__answer-content h4 {
  font-size: 1.1em;
}

.faq__answer-content h5 {
  font-size: 1em;
}

.faq__answer-content h6 {
  font-size: 0.9em;
}

.faq__answer-content strong,
.faq__answer-content b {
  font-weight: 600;
  color: var(--standard-primary-site-text-color, #ffffff);
}

.faq__answer-content em,
.faq__answer-content i {
  font-style: italic;
}

.faq__answer-content u {
  text-decoration: underline;
}

.faq__answer-content s,
.faq__answer-content strike {
  text-decoration: line-through;
}

.faq__answer-content sub {
  vertical-align: sub;
  font-size: 0.75em;
}

.faq__answer-content sup {
  vertical-align: super;
  font-size: 0.75em;
}

.faq__answer-content a {
  color: var(--primary-text-color, #ffc846);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.faq__answer-content a:hover {
  opacity: 0.8;
}

.faq__answer-content ul,
.faq__answer-content ol {
  margin: 0 0 1em;
  padding-left: 1.5em;
}

.faq__answer-content ul {
  list-style-type: disc;
}

.faq__answer-content ol {
  list-style-type: decimal;
}

.faq__answer-content li {
  margin-bottom: 0.5em;
}

.faq__answer-content li:last-child {
  margin-bottom: 0;
}

.faq__answer-content ul ul,
.faq__answer-content ol ol,
.faq__answer-content ul ol,
.faq__answer-content ol ul {
  margin-top: 0.5em;
  margin-bottom: 0;
}

.faq__answer-content blockquote {
  margin: 1em 0;
  padding: 0.75em 1em;
  border-left: 3px solid var(--primary-text-color, #ffc846);
  background: rgba(255, 255, 255, 0.05);
  font-style: italic;
}

.faq__answer-content pre {
  margin: 1em 0;
  padding: 1em;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  overflow-x: auto;
  font-family: monospace;
  font-size: 0.9em;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.faq__answer-content code {
  background: rgba(0, 0, 0, 0.2);
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-family: monospace;
  font-size: 0.9em;
}

.faq__answer-content pre code {
  background: none;
  padding: 0;
}

.faq__answer-content br {
  display: block;
  content: "";
  margin-top: 0.5em;
}

.faq__answer-content hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 1.5em 0;
}

.faq__answer-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
}

.faq__answer-content th,
.faq__answer-content td {
  padding: 0.5em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.faq__answer-content th {
  background: rgba(255, 255, 255, 0.05);
  font-weight: 600;
  color: var(--standard-primary-site-text-color, #ffffff);
}

.faq__answer-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 1em 0;
}

@media (min-width: 768px) {
  .faq {
    padding: 56px 24px;
  }
  .faq__title {
    margin-bottom: 40px;
  }
  .faq__item {
    border-radius: 16px;
    margin-bottom: 16px;
  }
  .faq__question {
    padding: 24px 32px;
  }
  .faq__question-text {
    font-size: 18px;
  }
  .faq__answer-content {
    padding: 0 32px 32px;
    font-size: 16px;
  }
}
@media (min-width: 1100px) {
  .faq {
    padding: 80px 24px;
  }
  .faq__title {
    margin-bottom: 48px;
  }
  .faq__question {
    padding: 28px 40px;
  }
  .faq__question-text {
    font-size: 20px;
  }
  .faq__answer-content {
    padding: 0 40px 40px;
    font-size: 17px;
    max-width: 900px;
  }
}

.marquee-carousel {
  width: 100%;
  padding: 80px 20px 0;
  color: var(--standard-primary-site-text-color, #111827);
  font-family: "Hubot Sans", "Framer Display", "Instrument Serif", "Segoe UI", Arial, sans-serif;
  font-synthesis: weight style;
  overflow: hidden;
}
.marquee-carousel--with-bg {
  background: var(--marquee-carousel-bg);
}

.marquee-carousel__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.marquee-carousel__title {
  font-family: inherit;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--standard-primary-site-text-color, #111827);
  margin: 0 0 32px;
}

.marquee-carousel__cta {
  margin-bottom: 60px;
}

.marquee-carousel__cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  background-color: var(--marquee-carousel-cta-bg, #000000);
  color: var(--marquee-carousel-cta-text, #ffffff);
  border-radius: 9999px;
  padding: 4px 4px 4px 24px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.marquee-carousel__cta-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--marquee-carousel-cta-hover-bg, #333333);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: -1;
  border-radius: 9999px;
}
.marquee-carousel__cta-button:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.marquee-carousel__cta-button:hover::before {
  transform: scaleX(1);
}
.marquee-carousel__cta-button:hover .marquee-carousel__cta-icon {
  transform: translateX(4px);
}
.marquee-carousel__cta-button:visited {
  color: var(--marquee-carousel-cta-text, #ffffff);
}

.marquee-carousel__cta-text {
  position: relative;
  z-index: 1;
}

.marquee-carousel__cta-icon {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background-color: var(--marquee-carousel-cta-icon-bg, #ffffff);
  color: var(--marquee-carousel-cta-icon-color, #000000);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}
.marquee-carousel__cta-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.marquee-carousel__track-container {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  position: relative;
  padding-bottom: 60px;
}
.marquee-carousel__track-container::before, .marquee-carousel__track-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.marquee-carousel__track-container::before {
  left: 0;
  background: linear-gradient(to right, var(--marquee-carousel-fade-color, #f0f8ff), transparent);
}
.marquee-carousel__track-container::after {
  right: 0;
  background: linear-gradient(to left, var(--marquee-carousel-fade-color, #f0f8ff), transparent);
}

.marquee-carousel__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee-scroll var(--marquee-carousel-duration, 40s) linear infinite;
}
.marquee-carousel__track:hover {
  animation-play-state: paused;
}

.marquee-carousel__card {
  flex-shrink: 0;
  width: 160px;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  background: var(--marquee-carousel-card-bg, #e5e7eb);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.marquee-carousel__card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}
.marquee-carousel__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .marquee-carousel {
    padding: 60px 10px 0;
  }
  .marquee-carousel__cta {
    margin-bottom: 40px;
  }
  .marquee-carousel__cta-button {
    padding: 4px 4px 4px 20px;
    font-size: 14px;
  }
  .marquee-carousel__cta-icon {
    width: 38px;
    height: 38px;
    margin-left: 12px;
  }
  .marquee-carousel__cta-icon svg {
    width: 18px;
    height: 18px;
  }
  .marquee-carousel__card {
    width: 130px;
    height: 180px;
    border-radius: 12px;
  }
  .marquee-carousel__track {
    gap: 12px;
  }
  .marquee-carousel__track-container::before, .marquee-carousel__track-container::after {
    width: 60px;
  }
}
@media (max-width: 480px) {
  .marquee-carousel {
    padding: 40px 10px 0;
  }
  .marquee-carousel__card {
    width: 110px;
    height: 150px;
    border-radius: 10px;
  }
  .marquee-carousel__track {
    gap: 10px;
  }
}

/* ==========================================================================
   Masonry Gallery Component CSS
   A masonry-style gallery supporting both images and videos with lightbox
   ========================================================================== */

.masonry-gallery {
  width: 100%;
  padding: 20px;
  position: relative;
}
.masonry-gallery--with-bg {
  background: var(--masonry-gallery-bg, var(--site-body-bg, #0a0a0a));
}

@media (max-width: 768px) {
  .masonry-gallery {
    padding: 10px;
  }
}

.masonry-gallery__container {
  width: 100%;
  position: relative;
}

.masonry-gallery__grid {
  column-count: 6;
  column-gap: 12px;
  orphans: 1;
  widows: 1;
  position: relative;
}

.masonry-gallery__grid::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent 0%, var(--masonry-gallery-bg, var(--site-body-bg, #0a0a0a)) 100%);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 1400px) {
  .masonry-gallery__grid {
    column-count: 5;
  }
}
@media (max-width: 1100px) {
  .masonry-gallery__grid {
    column-count: 4;
  }
}
@media (max-width: 860px) {
  .masonry-gallery__grid {
    column-count: 3;
  }
}
@media (max-width: 600px) {
  .masonry-gallery__grid {
    column-count: 2;
    column-gap: 8px;
  }
  .masonry-gallery__grid::after {
    height: 120px;
  }
}

.masonry-gallery__item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--masonry-gallery-item-bg, rgba(255, 255, 255, 0.05));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.masonry-gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 600px) {
  .masonry-gallery__item {
    margin-bottom: 8px;
    border-radius: 8px;
  }
}

.masonry-gallery__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.masonry-gallery__item:hover .masonry-gallery__image {
  transform: scale(1.03);
}

.masonry-gallery__video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.masonry-gallery__video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.masonry-gallery__thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.masonry-gallery__item.is-playing .masonry-gallery__thumbnail {
  opacity: 0;
}

.masonry-gallery__play-indicator {
  display: none;
}

.masonry-gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--site-overlay-bg, rgba(128, 128, 128, 0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.masonry-gallery__item:hover .masonry-gallery__overlay {
  opacity: 1;
}

.masonry-gallery__title {
  color: var(--primary-text-color, #ffffff);
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  padding: 12px;
  line-height: 1.3;
  max-width: 90%;
  word-wrap: break-word;
  opacity: 0;
  transition: opacity 0.5s ease 0.15s;
}

.masonry-gallery__item:hover .masonry-gallery__title {
  opacity: 1;
}

@media (max-width: 600px) {
  .masonry-gallery__title {
    font-size: 18px;
    padding: 8px;
  }
}

/* Hide video controls */
.masonry-gallery__video::-webkit-media-controls,
.masonry-gallery__video::-webkit-media-controls-panel,
.masonry-gallery__video::-webkit-media-controls-play-button,
.masonry-gallery__video::-webkit-media-controls-start-playback-button,
.masonry-gallery__video::-webkit-media-controls-overlay-play-button,
.masonry-gallery__video::-webkit-media-controls-timeline,
.masonry-gallery__video::-webkit-media-controls-current-time-display,
.masonry-gallery__video::-webkit-media-controls-time-remaining-display,
.masonry-gallery__video::-webkit-media-controls-mute-button,
.masonry-gallery__video::-webkit-media-controls-volume-slider,
.masonry-gallery__video::-webkit-media-controls-fullscreen-button,
.masonry-gallery__video::-webkit-media-controls-toggle-closed-captions-button,
.masonry-gallery__video::-webkit-media-controls-enclosure {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}
.masonry-gallery__video::-moz-media-controls {
  display: none !important;
}
.masonry-gallery__video {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

/* CTA Section */
.masonry-gallery__cta {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .masonry-gallery__cta {
    margin-top: 24px;
  }
}

/* Loading state */
.masonry-gallery__item.is-loading {
  animation: masonry-gallery-pulse 1.5s ease-in-out infinite;
}

@keyframes masonry-gallery-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .masonry-gallery__item {
    transition: none;
  }
  .masonry-gallery__item:hover {
    transform: none;
  }
  .masonry-gallery__image {
    transition: none;
  }
  .masonry-gallery__item:hover .masonry-gallery__image {
    transform: none;
  }
  .masonry-gallery__thumbnail {
    transition: none;
  }
  .masonry-gallery__play-indicator {
    transition: none;
  }
  .masonry-gallery__overlay {
    transition: none;
  }
  .masonry-gallery__title {
    transition: none;
  }
}

/* ==========================================================================
   Lightbox Styles
   ========================================================================== */

.masonry-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--masonry-gallery-lightbox-bg, rgba(0, 0, 0, 0.92));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.masonry-gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.masonry-gallery-lightbox__container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Close button */
.masonry-gallery-lightbox .masonry-gallery-lightbox__close {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 10001;
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
}
.masonry-gallery-lightbox .masonry-gallery-lightbox__close.btn-theme-dark.btn-icon-only {
  width: 48px;
  height: 48px;
  border: 1px solid #ffffff;
}
.masonry-gallery-lightbox .masonry-gallery-lightbox__close.btn-theme-dark.btn-icon-only:hover {
  transform: translateZ(0);
}
.masonry-gallery-lightbox .masonry-gallery-lightbox__close.btn-theme-dark.btn-icon-only svg {
  stroke: #ffffff;
  transition: stroke 0.3s ease;
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
}
.masonry-gallery-lightbox .masonry-gallery-lightbox__close.btn-theme-dark.btn-icon-only:hover svg {
  stroke: #000000;
}
.masonry-gallery-lightbox .masonry-gallery-lightbox__close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #ffffff;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}
.masonry-gallery-lightbox .masonry-gallery-lightbox__close:hover::before {
  width: 300%;
  height: 300%;
}

/* Navigation buttons */
.masonry-gallery-lightbox .masonry-gallery-lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10001;
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
}
.masonry-gallery-lightbox .masonry-gallery-lightbox__nav.btn-theme-dark.btn-icon-only {
  width: 56px;
  height: 56px;
  border: 1px solid #ffffff;
}
.masonry-gallery-lightbox .masonry-gallery-lightbox__nav.btn-theme-dark.btn-icon-only:hover {
  transform: translateY(-50%);
}
.masonry-gallery-lightbox .masonry-gallery-lightbox__nav.btn-theme-dark.btn-icon-only svg {
  stroke: #ffffff;
  transition: stroke 0.3s ease;
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
}
.masonry-gallery-lightbox .masonry-gallery-lightbox__nav.btn-theme-dark.btn-icon-only:hover svg {
  stroke: #000000;
}
.masonry-gallery-lightbox .masonry-gallery-lightbox__nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #ffffff;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}
.masonry-gallery-lightbox .masonry-gallery-lightbox__nav:hover::before {
  width: 300%;
  height: 300%;
}

.masonry-gallery-lightbox__nav--prev {
  left: 10px;
}

.masonry-gallery-lightbox__nav--next {
  right: 10px;
}

/* Media container */
.masonry-gallery-lightbox__media {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  max-height: calc(90vh - 100px);
  flex: 1;
  overflow: hidden;
}

.masonry-gallery-lightbox__image {
  max-width: 100%;
  max-height: calc(90vh - 100px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: lightbox-fade-in 0.3s ease;
}

.masonry-gallery-lightbox__video {
  max-width: 100%;
  max-height: calc(90vh - 100px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: lightbox-fade-in 0.3s ease;
  background: #000;
}

/* Hide lightbox video controls */
.masonry-gallery-lightbox__video::-webkit-media-controls,
.masonry-gallery-lightbox__video::-webkit-media-controls-panel,
.masonry-gallery-lightbox__video::-webkit-media-controls-play-button,
.masonry-gallery-lightbox__video::-webkit-media-controls-start-playback-button,
.masonry-gallery-lightbox__video::-webkit-media-controls-overlay-play-button,
.masonry-gallery-lightbox__video::-webkit-media-controls-timeline,
.masonry-gallery-lightbox__video::-webkit-media-controls-current-time-display,
.masonry-gallery-lightbox__video::-webkit-media-controls-time-remaining-display,
.masonry-gallery-lightbox__video::-webkit-media-controls-mute-button,
.masonry-gallery-lightbox__video::-webkit-media-controls-volume-slider,
.masonry-gallery-lightbox__video::-webkit-media-controls-fullscreen-button,
.masonry-gallery-lightbox__video::-webkit-media-controls-toggle-closed-captions-button,
.masonry-gallery-lightbox__video::-webkit-media-controls-enclosure {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}
.masonry-gallery-lightbox__video::-moz-media-controls {
  display: none !important;
}

/* Title */
.masonry-gallery-lightbox__title {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--masonry-gallery-lightbox-title-color, #ffffff);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  padding: 12px 24px;
  background: var(--masonry-gallery-lightbox-title-bg, rgba(0, 0, 0, 0.6));
  border-radius: 8px;
  max-width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.masonry-gallery-lightbox__title:empty {
  display: none;
}

/* Video controls */
.masonry-gallery-lightbox__video-controls {
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 12px;
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.masonry-gallery-lightbox__video-controls.is-visible {
  opacity: 1;
  visibility: visible;
}

.masonry-gallery-lightbox .masonry-gallery-lightbox__control-btn {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
}
.masonry-gallery-lightbox .masonry-gallery-lightbox__control-btn.btn-theme-dark.btn-icon-only {
  width: 48px;
  height: 48px;
  border: 1px solid #ffffff;
}
.masonry-gallery-lightbox .masonry-gallery-lightbox__control-btn.btn-theme-dark.btn-icon-only:hover {
  transform: translateZ(0);
}
.masonry-gallery-lightbox .masonry-gallery-lightbox__control-btn.btn-theme-dark.btn-icon-only svg {
  stroke: #ffffff;
  transition: stroke 0.3s ease;
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
}
.masonry-gallery-lightbox .masonry-gallery-lightbox__control-btn.btn-theme-dark.btn-icon-only:hover svg {
  stroke: #000000;
}
.masonry-gallery-lightbox .masonry-gallery-lightbox__control-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #ffffff;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}
.masonry-gallery-lightbox .masonry-gallery-lightbox__control-btn:hover::before {
  width: 300%;
  height: 300%;
}
.masonry-gallery-lightbox .masonry-gallery-lightbox__control-btn svg {
  width: 18px;
  height: 18px;
}

@keyframes lightbox-fade-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mobile responsive for lightbox */
@media (max-width: 768px) {
  .masonry-gallery-lightbox__container {
    padding: 10px;
    max-width: 100vw;
    max-height: 100vh;
  }
  .masonry-gallery-lightbox__close {
    top: 20px;
    right: 20px;
  }
  .masonry-gallery-lightbox__close.btn-theme-dark.btn-icon-only {
    width: 44px;
    height: 44px;
  }
  .masonry-gallery-lightbox__nav.btn-theme-dark.btn-icon-only {
    width: 44px;
    height: 44px;
  }
  .masonry-gallery-lightbox__nav svg {
    width: 22px;
    height: 22px;
  }
  .masonry-gallery-lightbox__nav--prev {
    left: 20px;
  }
  .masonry-gallery-lightbox__nav--next {
    right: 20px;
  }
  .masonry-gallery-lightbox__media {
    max-height: calc(100vh - 120px);
  }
  .masonry-gallery-lightbox__image,
  .masonry-gallery-lightbox__video {
    max-height: calc(100vh - 120px);
    border-radius: 4px;
  }
  .masonry-gallery-lightbox__title {
    bottom: 20px;
    font-size: 14px;
    padding: 8px 16px;
    max-width: 90%;
  }
  .masonry-gallery-lightbox__video-controls {
    bottom: 20px;
    right: 20px;
    gap: 8px;
  }
  .masonry-gallery-lightbox__control-btn.btn-theme-dark.btn-icon-only {
    width: 44px;
    height: 44px;
  }
}

/* Reduced motion for lightbox */
@media (prefers-reduced-motion: reduce) {
  .masonry-gallery-lightbox {
    transition: none;
  }
  .masonry-gallery-lightbox__nav {
    transition: none;
  }
  .masonry-gallery-lightbox__nav:hover {
    transform: translateY(-50%);
  }
  .masonry-gallery-lightbox__image,
  .masonry-gallery-lightbox__video {
    animation: none;
  }
  .masonry-gallery-lightbox__video-controls {
    transition: none;
  }
}

@charset "UTF-8";
.subscription-plans {
  width: 100%;
  padding: 60px 10px;
  color: var(--standard-primary-site-text-color, #111827);
}
@media (min-width: 768px) {
  .subscription-plans {
    padding: 80px 20px;
  }
}
.subscription-plans--with-bg {
  background: var(--subscription-plans-bg, #f8f9fa);
}

.theme-dark .subscription-plans,
.subscription-plans.theme-dark {
  color: var(--standard-primary-site-text-color, #ffffff);
}

.theme-dark .subscription-plans--with-bg,
.subscription-plans.theme-dark.subscription-plans--with-bg {
  background: var(--subscription-plans-bg, #1a1a1a);
}

.subscription-plans__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.subscription-plans__header {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .subscription-plans__header {
    margin-bottom: 56px;
  }
}

.subscription-plans__title {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  color: var(--standard-primary-site-text-color, #111827);
}

.subscription-plans__subtitle {
  font-size: 16px;
  line-height: 1.5;
  color: var(--standard-secondary-site-text-color, #6b7280);
  margin: 0;
  max-width: 480px;
  margin-inline: auto;
}

.subscription-plans__toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.subscription-plans__toggle-container {
  display: flex;
  align-items: center;
  background: var(--subscription-plans-toggle-bg, #e5e7eb);
  border-radius: 9999px;
  padding: 4px;
  position: relative;
}

.theme-dark .subscription-plans__toggle-container {
  background: var(--subscription-plans-toggle-bg, #374151);
}

.subscription-plans__toggle-btn {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  background: transparent;
  color: var(--standard-secondary-site-text-color, #6b7280);
  cursor: pointer;
  border-radius: 9999px;
  transition: color 0.3s ease, background 0.3s ease;
  position: relative;
  z-index: 1;
}
.subscription-plans__toggle-btn.active {
  color: var(--subscription-plans-toggle-active-text, #ffffff);
  background: var(--subscription-plans-toggle-active-bg, #3b82f6);
}
.subscription-plans__toggle-btn:hover:not(.active) {
  color: var(--standard-primary-site-text-color, #111827);
}

.subscription-plans__toggle-badge {
  display: none;
  align-items: center;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--subscription-plans-save-badge-bg, #dcfce7);
  color: var(--subscription-plans-save-badge-text, #16a34a);
}
.subscription-plans__toggle-badge.visible {
  display: inline-flex;
}

.subscription-plans__toggle-badge--desktop {
  margin-left: 0;
}

.subscription-plans__toggle-badge--mobile {
  display: none !important;
}

.theme-dark .subscription-plans__toggle-badge {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.subscription-plans__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
@media (min-width: 640px) {
  .subscription-plans__nav {
    display: none;
  }
}

.subscription-plans__nav-btn {
  width: 44px !important;
  height: 44px !important;
  padding: 0 !important;
}
.subscription-plans__nav-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}
.subscription-plans__nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.subscription-plans__grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 10px 10px 30px;
  margin: -10px -10px -30px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.subscription-plans__grid::-webkit-scrollbar {
  display: none;
}
.subscription-plans__grid .subscription-plans__card {
  flex: 0 0 85%;
  min-width: 280px;
  max-width: 320px;
  scroll-snap-align: center;
}
@media (min-width: 640px) {
  .subscription-plans__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    overflow-x: visible;
    padding: 0;
    margin: 0;
  }
  .subscription-plans__grid .subscription-plans__card {
    flex: none;
    min-width: unset;
    max-width: unset;
  }
}
@media (min-width: 1024px) {
  .subscription-plans__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.subscription-plans__card {
  background: var(--subscription-plans-card-bg, #ffffff);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.9s ease;
  border: 1px solid var(--subscription-plans-card-border, #e5e7eb);
}
@media (min-width: 640px) {
  .subscription-plans__card:hover {
    transform: translateY(-25px);
    z-index: 10;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }
}
.subscription-plans__card[data-shadow=true] {
  box-shadow: 0 10px 40px -10px rgba(59, 130, 246, 0.3), 0 4px 20px -5px rgba(59, 130, 246, 0.15);
  border-color: var(--subscription-plans-highlight-border, #3b82f6);
}
.subscription-plans__card[data-shadow=true]:hover {
  box-shadow: 0 30px 60px -15px rgba(59, 130, 246, 0.4), 0 10px 30px -10px rgba(59, 130, 246, 0.2);
}

.theme-dark .subscription-plans__card {
  background: var(--subscription-plans-card-bg, #2a2a2a);
  border-color: var(--subscription-plans-card-border, #404040);
}
@media (min-width: 640px) {
  .theme-dark .subscription-plans__card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  }
}
.theme-dark .subscription-plans__card[data-shadow=true] {
  box-shadow: 0 10px 40px -10px rgba(59, 130, 246, 0.4), 0 4px 20px -5px rgba(59, 130, 246, 0.2);
  border-color: var(--subscription-plans-highlight-border, #3b82f6);
}

.subscription-plans__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.subscription-plans__badge.top-choice {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #ffffff;
}
.subscription-plans__badge.top-choice::before {
  content: "⚡";
  font-size: 10px;
}
.subscription-plans__badge.special-offer {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff;
}
.subscription-plans__badge.popular {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #ffffff;
}
.subscription-plans__badge.best-value {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
}

.subscription-plans__name {
  font-size: 20px;
  font-weight: 600;
  color: var(--standard-primary-site-text-color, #111827);
  margin: 0 0 16px;
  padding-right: 80px;
}

.subscription-plans__pricing {
  margin-bottom: 20px;
}

.subscription-plans__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.subscription-plans__original-price {
  font-size: 18px;
  font-weight: 500;
  color: var(--standard-secondary-site-text-color, #9ca3af);
  text-decoration: line-through;
}

.subscription-plans__current-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--subscription-plans-price-color, #3b82f6);
  line-height: 1;
}

.subscription-plans__period {
  font-size: 16px;
  font-weight: 500;
  color: var(--standard-secondary-site-text-color, #6b7280);
}

.subscription-plans__billing-note {
  font-size: 13px;
  color: var(--standard-secondary-site-text-color, #9ca3af);
  margin-top: 4px;
}

.subscription-plans__cta {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

.subscription-plans__cta .cta-pill {
  --cta-pill-bg: var(--subscription-plans-cta-bg, #000000);
  --cta-pill-text: var(--subscription-plans-cta-text, #ffffff);
  --cta-pill-hover-bg: var(--subscription-plans-cta-hover-bg, #333333);
  --cta-pill-icon-bg: var(--subscription-plans-cta-icon-bg, #ffffff);
  --cta-pill-icon-color: var(--subscription-plans-cta-icon-color, #000000);
}

.subscription-plans__cta .cta-pill--primary {
  --cta-pill-bg: var(--subscription-plans-cta-primary-bg, #3b82f6);
  --cta-pill-text: #ffffff;
  --cta-pill-hover-bg: var(--subscription-plans-cta-primary-hover, #2563eb);
  --cta-pill-icon-bg: rgba(255, 255, 255, 0.2);
  --cta-pill-icon-color: #ffffff;
}

.theme-dark .subscription-plans__cta .cta-pill:not(.cta-pill--primary) {
  --cta-pill-bg: var(--subscription-plans-cta-bg, #ffffff);
  --cta-pill-text: var(--subscription-plans-cta-text, #000000);
  --cta-pill-hover-bg: var(--subscription-plans-cta-hover-bg, #e5e7eb);
  --cta-pill-icon-bg: var(--subscription-plans-cta-icon-bg, #000000);
  --cta-pill-icon-color: var(--subscription-plans-cta-icon-color, #ffffff);
}

.subscription-plans__cta .btn-theme-light,
.subscription-plans__cta .btn-theme-dark,
.subscription-plans__cta .btn-theme-auto {
  width: 100%;
  justify-content: center;
  padding: 12px 24px;
  font-size: 15px;
}

.subscription-plans__cta .btn-primary {
  background: var(--subscription-plans-cta-primary-bg, #3b82f6);
  color: #ffffff;
  border-color: var(--subscription-plans-cta-primary-bg, #3b82f6);
}
.subscription-plans__cta .btn-primary::before {
  background: var(--subscription-plans-cta-primary-hover, #2563eb);
}
.subscription-plans__cta .btn-primary:hover {
  color: #ffffff !important;
  border-color: var(--subscription-plans-cta-primary-hover, #2563eb);
}

.subscription-plans__credits {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid var(--subscription-plans-divider, #e5e7eb);
  margin-bottom: 16px;
}

.theme-dark .subscription-plans__credits {
  border-color: var(--subscription-plans-divider, #404040);
}

.subscription-plans__credits-icon {
  width: 20px;
  height: 20px;
  color: var(--subscription-plans-credits-icon, #3b82f6);
}

.subscription-plans__credits-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--standard-primary-site-text-color, #111827);
}

.subscription-plans__features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.subscription-plans__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.4;
  color: var(--standard-secondary-site-text-color, #4b5563);
}

.subscription-plans__feature-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--subscription-plans-feature-check, #22c55e);
  margin-top: 1px;
}

.subscription-plans__original-price.hidden,
.subscription-plans__discount-expired {
  display: none;
}

@media (max-width: 639px) {
  .subscription-plans__name {
    font-size: 18px;
  }
  .subscription-plans__current-price {
    font-size: 32px;
  }
}
.subscription-plans__pricing[data-billing=yearly] .subscription-plans__monthly-price,
.subscription-plans__pricing[data-billing=monthly] .subscription-plans__yearly-price {
  display: none;
}

.subscription-plans__pricing[data-billing=yearly] .subscription-plans__yearly-price,
.subscription-plans__pricing[data-billing=monthly] .subscription-plans__monthly-price {
  display: flex;
}

.subscription-plans__monthly-price,
.subscription-plans__yearly-price {
  display: none;
}

.subscription-plans__monthly-price {
  display: flex;
}

.subscription-plans__info-icon {
  width: 14px;
  height: 14px;
  color: var(--standard-secondary-site-text-color, #9ca3af);
  cursor: help;
  margin-left: 4px;
  vertical-align: middle;
}

/*# sourceMappingURL=subscription-plans.css.map */

.compare-subscription {
  width: 100%;
  padding: 60px 10px;
  color: var(--standard-primary-site-text-color, #111827);
}
@media (min-width: 768px) {
  .compare-subscription {
    padding: 80px 20px;
  }
}
.compare-subscription--with-bg {
  background: var(--compare-subscription-bg, #f8f9fa);
}

.theme-dark .compare-subscription,
.compare-subscription.theme-dark {
  color: var(--standard-primary-site-text-color, #ffffff);
}

.theme-dark .compare-subscription--with-bg,
.compare-subscription.theme-dark.compare-subscription--with-bg {
  background: var(--compare-subscription-bg, #1a1a1a);
}

.compare-subscription__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.compare-subscription__header {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .compare-subscription__header {
    margin-bottom: 56px;
  }
}

.compare-subscription__title {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  color: var(--standard-primary-site-text-color, #111827);
}

.compare-subscription__subtitle {
  font-size: 16px;
  line-height: 1.5;
  color: var(--standard-secondary-site-text-color, #6b7280);
  margin: 0;
  max-width: 560px;
  margin-inline: auto;
}

.compare-subscription__table-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: var(--compare-subscription-table-bg, #ffffff);
  border: 1px solid var(--compare-subscription-border, #e5e7eb);
  box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .compare-subscription__table-wrapper {
    border-radius: 12px;
  }
}

.theme-dark .compare-subscription__table-wrapper {
  background: var(--compare-subscription-table-bg, #2a2a2a);
  border-color: var(--compare-subscription-border, #404040);
  box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.3);
}

.compare-subscription__table {
  display: flex;
  width: 100%;
  min-width: 100%;
}

.compare-subscription__features-col {
  flex-shrink: 0;
  width: 240px;
  min-width: 240px;
  background: var(--compare-subscription-features-bg, #f9fafb);
  border-right: 1px solid var(--compare-subscription-border, #e5e7eb);
  z-index: 10;
}
@media (max-width: 767px) {
  .compare-subscription__features-col {
    width: 140px;
    min-width: 140px;
    position: sticky;
    left: 0;
  }
}
@media (min-width: 768px) {
  .compare-subscription__features-col {
    width: 280px;
    min-width: 280px;
  }
}

.theme-dark .compare-subscription__features-col {
  background: var(--compare-subscription-features-bg, #1f1f1f);
  border-right-color: var(--compare-subscription-border, #404040);
}

.compare-subscription__plans-container {
  display: flex;
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.compare-subscription__plans-container::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .compare-subscription__plans-container {
    overflow-x: visible;
  }
}

.compare-subscription__plan-col {
  flex-shrink: 0;
  min-width: 160px;
  flex: 1;
  border-right: 1px solid var(--compare-subscription-border, #e5e7eb);
}
.compare-subscription__plan-col:last-child {
  border-right: none;
}
@media (max-width: 767px) {
  .compare-subscription__plan-col {
    min-width: 140px;
    width: 140px;
  }
}
@media (min-width: 768px) {
  .compare-subscription__plan-col {
    min-width: 180px;
  }
}

.theme-dark .compare-subscription__plan-col {
  border-right-color: var(--compare-subscription-border, #404040);
}

.compare-subscription__plan-col[data-highlighted=true] {
  background: var(--compare-subscription-highlight-bg, rgba(59, 130, 246, 0.05));
  position: relative;
}
.compare-subscription__plan-col[data-highlighted=true]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--compare-subscription-highlight-accent, #3b82f6);
}

.theme-dark .compare-subscription__plan-col[data-highlighted=true] {
  background: var(--compare-subscription-highlight-bg, rgba(255, 200, 70, 0.08));
}
.theme-dark .compare-subscription__plan-col[data-highlighted=true]::before {
  background: var(--compare-subscription-highlight-accent, #ffc846);
}

.compare-subscription__header-cell {
  padding: 24px 16px;
  text-align: center;
  border-bottom: 1px solid var(--compare-subscription-border, #e5e7eb);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .compare-subscription__header-cell {
    padding: 16px 12px;
    min-height: 120px;
  }
}

.theme-dark .compare-subscription__header-cell {
  border-bottom-color: var(--compare-subscription-border, #404040);
}

.compare-subscription__features-header {
  padding: 24px 20px;
  text-align: left;
  border-bottom: 1px solid var(--compare-subscription-border, #e5e7eb);
  min-height: 140px;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .compare-subscription__features-header {
    padding: 16px 12px;
    min-height: 120px;
  }
}

.theme-dark .compare-subscription__features-header {
  border-bottom-color: var(--compare-subscription-border, #404040);
}

.compare-subscription__features-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--standard-secondary-site-text-color, #6b7280);
}

.compare-subscription__plan-name {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--standard-primary-site-text-color, #111827);
}
@media (max-width: 767px) {
  .compare-subscription__plan-name {
    font-size: 15px;
    margin-bottom: 6px;
  }
}

.compare-subscription__plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
  margin-bottom: 8px;
}
.compare-subscription__plan-badge.popular {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #ffffff;
}
.compare-subscription__plan-badge.best-value {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
}
.compare-subscription__plan-badge.recommended {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: #ffffff;
}

.compare-subscription__plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-top: 4px;
}

.compare-subscription__price-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--compare-subscription-price-color, #3b82f6);
  line-height: 1;
}
@media (max-width: 767px) {
  .compare-subscription__price-value {
    font-size: 22px;
  }
}

.compare-subscription__price-period {
  font-size: 14px;
  font-weight: 500;
  color: var(--standard-secondary-site-text-color, #6b7280);
}
@media (max-width: 767px) {
  .compare-subscription__price-period {
    font-size: 12px;
  }
}

.compare-subscription__row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--compare-subscription-border, #e5e7eb);
}
.compare-subscription__row:last-child {
  border-bottom: none;
}
.compare-subscription__row:nth-child(even) {
  background: var(--compare-subscription-row-alt-bg, rgba(0, 0, 0, 0.02));
}

.theme-dark .compare-subscription__row {
  border-bottom-color: var(--compare-subscription-border, #404040);
}
.theme-dark .compare-subscription__row:nth-child(even) {
  background: var(--compare-subscription-row-alt-bg, rgba(255, 255, 255, 0.02));
}

.compare-subscription__feature-cell {
  padding: 14px 20px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--standard-primary-site-text-color, #111827);
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .compare-subscription__feature-cell {
    padding: 12px 12px;
    font-size: 13px;
  }
}

.compare-subscription__value-cell {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  color: var(--standard-secondary-site-text-color, #6b7280);
  border-left: 1px solid var(--compare-subscription-border, #e5e7eb);
}
@media (max-width: 767px) {
  .compare-subscription__value-cell {
    padding: 12px 10px;
    font-size: 12px;
  }
}
.compare-subscription__value-cell:last-child {
  border-right: none;
}

.theme-dark .compare-subscription__value-cell {
  border-left-color: var(--compare-subscription-border, #404040);
}

.compare-subscription__plan-col[data-highlighted=true] .compare-subscription__value-cell {
  background: var(--compare-subscription-highlight-bg, rgba(59, 130, 246, 0.05));
}

.theme-dark .compare-subscription__plan-col[data-highlighted=true] .compare-subscription__value-cell {
  background: var(--compare-subscription-highlight-bg, rgba(255, 200, 70, 0.08));
}

.compare-subscription__check-icon {
  width: 20px;
  height: 20px;
  color: var(--compare-subscription-check-color, #22c55e);
  flex-shrink: 0;
}

.compare-subscription__cross-icon {
  width: 18px;
  height: 18px;
  color: var(--compare-subscription-cross-color, #ef4444);
  flex-shrink: 0;
}

.compare-subscription__value-text {
  font-weight: 500;
  color: var(--standard-primary-site-text-color, #111827);
}

.compare-subscription__cta-row {
  display: flex;
  border-top: 1px solid var(--compare-subscription-border, #e5e7eb);
}

.theme-dark .compare-subscription__cta-row {
  border-top-color: var(--compare-subscription-border, #404040);
}

.compare-subscription__cta-feature-cell {
  width: 240px;
  min-width: 240px;
  flex-shrink: 0;
  background: var(--compare-subscription-features-bg, #f9fafb);
  border-right: 1px solid var(--compare-subscription-border, #e5e7eb);
}
@media (max-width: 767px) {
  .compare-subscription__cta-feature-cell {
    width: 140px;
    min-width: 140px;
    position: sticky;
    left: 0;
    z-index: 10;
  }
}
@media (min-width: 768px) {
  .compare-subscription__cta-feature-cell {
    width: 280px;
    min-width: 280px;
  }
}

.theme-dark .compare-subscription__cta-feature-cell {
  background: var(--compare-subscription-features-bg, #1f1f1f);
  border-right-color: var(--compare-subscription-border, #404040);
}

.compare-subscription__cta-plans-container {
  display: flex;
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.compare-subscription__cta-plans-container::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .compare-subscription__cta-plans-container {
    overflow-x: visible;
  }
}

.compare-subscription__cta-cell {
  flex-shrink: 0;
  min-width: 160px;
  flex: 1;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--compare-subscription-border, #e5e7eb);
}
.compare-subscription__cta-cell:last-child {
  border-right: none;
}
@media (max-width: 767px) {
  .compare-subscription__cta-cell {
    min-width: 140px;
    width: 140px;
    padding: 16px 12px;
  }
}
@media (min-width: 768px) {
  .compare-subscription__cta-cell {
    min-width: 180px;
  }
}

.theme-dark .compare-subscription__cta-cell {
  border-right-color: var(--compare-subscription-border, #404040);
}

.compare-subscription__cta-cell[data-highlighted=true] {
  background: var(--compare-subscription-highlight-bg, rgba(59, 130, 246, 0.05));
}

.theme-dark .compare-subscription__cta-cell[data-highlighted=true] {
  background: var(--compare-subscription-highlight-bg, rgba(255, 200, 70, 0.08));
}

.compare-subscription__cta-cell .cta-pill {
  --cta-pill-bg: var(--compare-subscription-cta-bg, #000000);
  --cta-pill-text: var(--compare-subscription-cta-text, #ffffff);
  --cta-pill-hover-bg: var(--compare-subscription-cta-hover-bg, #333333);
  --cta-pill-icon-bg: var(--compare-subscription-cta-icon-bg, #ffffff);
  --cta-pill-icon-color: var(--compare-subscription-cta-icon-color, #000000);
}

.compare-subscription__cta-cell .cta-pill--compact {
  padding: 3px 3px 3px 16px;
  font-size: 12px;
}
.compare-subscription__cta-cell .cta-pill--compact .cta-pill__icon {
  width: 32px;
  height: 32px;
  margin-left: 10px;
}
.compare-subscription__cta-cell .cta-pill--compact .cta-pill__icon svg {
  width: 14px;
  height: 14px;
}
@media (max-width: 767px) {
  .compare-subscription__cta-cell .cta-pill--compact {
    padding: 3px 3px 3px 12px;
    font-size: 11px;
  }
  .compare-subscription__cta-cell .cta-pill--compact .cta-pill__icon {
    width: 28px;
    height: 28px;
    margin-left: 8px;
  }
  .compare-subscription__cta-cell .cta-pill--compact .cta-pill__icon svg {
    width: 12px;
    height: 12px;
  }
}

.compare-subscription__cta-cell .cta-pill--primary {
  --cta-pill-bg: var(--compare-subscription-cta-primary-bg, #3b82f6);
  --cta-pill-text: #ffffff;
  --cta-pill-hover-bg: var(--compare-subscription-cta-primary-hover, #2563eb);
  --cta-pill-icon-bg: rgba(255, 255, 255, 0.2);
  --cta-pill-icon-color: #ffffff;
}

.theme-dark .compare-subscription__cta-cell .cta-pill:not(.cta-pill--primary) {
  --cta-pill-bg: var(--compare-subscription-cta-bg, #ffffff);
  --cta-pill-text: var(--compare-subscription-cta-text, #000000);
  --cta-pill-hover-bg: var(--compare-subscription-cta-hover-bg, #e5e7eb);
  --cta-pill-icon-bg: var(--compare-subscription-cta-icon-bg, #000000);
  --cta-pill-icon-color: var(--compare-subscription-cta-icon-color, #ffffff);
}

.compare-subscription__cta-cell .btn-theme-light,
.compare-subscription__cta-cell .btn-theme-dark,
.compare-subscription__cta-cell .btn-theme-auto {
  width: 100%;
  justify-content: center;
  padding: 10px 16px;
  font-size: 13px;
}
@media (max-width: 767px) {
  .compare-subscription__cta-cell .btn-theme-light,
  .compare-subscription__cta-cell .btn-theme-dark,
  .compare-subscription__cta-cell .btn-theme-auto {
    padding: 8px 12px;
    font-size: 12px;
  }
}

.compare-subscription__cta-cell .btn-primary {
  background: var(--compare-subscription-cta-primary-bg, #3b82f6);
  color: #ffffff;
  border-color: var(--compare-subscription-cta-primary-bg, #3b82f6);
}
.compare-subscription__cta-cell .btn-primary::before {
  background: var(--compare-subscription-cta-primary-hover, #2563eb);
}
.compare-subscription__cta-cell .btn-primary:hover {
  color: #ffffff !important;
  border-color: var(--compare-subscription-cta-primary-hover, #2563eb);
}

.compare-subscription__scroll-indicator {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 12px;
  color: var(--standard-secondary-site-text-color, #6b7280);
  background: var(--compare-subscription-features-bg, #f9fafb);
  border-top: 1px solid var(--compare-subscription-border, #e5e7eb);
}
@media (max-width: 767px) {
  .compare-subscription__scroll-indicator {
    display: flex;
  }
}

.theme-dark .compare-subscription__scroll-indicator {
  background: var(--compare-subscription-features-bg, #1f1f1f);
  border-top-color: var(--compare-subscription-border, #404040);
}

.compare-subscription__scroll-indicator-icon {
  width: 16px;
  height: 16px;
  animation: swipeHint 1.5s ease-in-out infinite;
}

@keyframes swipeHint {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}
.compare-subscription__nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .compare-subscription__nav {
    display: flex;
  }
}

.compare-subscription__nav-btn {
  width: 44px !important;
  height: 44px !important;
  padding: 0 !important;
}
.compare-subscription__nav-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}
.compare-subscription__nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.compare-subscription__section-row {
  background: var(--compare-subscription-section-bg, #f3f4f6);
  border-bottom: 1px solid var(--compare-subscription-border, #e5e7eb);
}

.theme-dark .compare-subscription__section-row {
  background: var(--compare-subscription-section-bg, #262626);
  border-bottom-color: var(--compare-subscription-border, #404040);
}

.compare-subscription__section-title {
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--standard-secondary-site-text-color, #6b7280);
}
@media (max-width: 767px) {
  .compare-subscription__section-title {
    padding: 8px 12px;
    font-size: 11px;
  }
}

.compare-subscription__body {
  display: flex;
  flex-direction: column;
}

.compare-subscription__body-wrapper {
  display: flex;
  width: 100%;
}

.compare-subscription__features-body {
  flex-shrink: 0;
  width: 240px;
  min-width: 240px;
  background: var(--compare-subscription-features-bg, #f9fafb);
  border-right: 1px solid var(--compare-subscription-border, #e5e7eb);
  z-index: 10;
}
@media (max-width: 767px) {
  .compare-subscription__features-body {
    width: 140px;
    min-width: 140px;
    position: sticky;
    left: 0;
  }
}
@media (min-width: 768px) {
  .compare-subscription__features-body {
    width: 280px;
    min-width: 280px;
  }
}

.theme-dark .compare-subscription__features-body {
  background: var(--compare-subscription-features-bg, #1f1f1f);
  border-right-color: var(--compare-subscription-border, #404040);
}

.compare-subscription__plans-body {
  display: flex;
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.compare-subscription__plans-body::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .compare-subscription__plans-body {
    overflow-x: visible;
  }
}

.compare-subscription__plan-body-col {
  flex-shrink: 0;
  min-width: 160px;
  flex: 1;
  border-right: 1px solid var(--compare-subscription-border, #e5e7eb);
}
.compare-subscription__plan-body-col:last-child {
  border-right: none;
}
@media (max-width: 767px) {
  .compare-subscription__plan-body-col {
    min-width: 140px;
    width: 140px;
  }
}
@media (min-width: 768px) {
  .compare-subscription__plan-body-col {
    min-width: 180px;
  }
}

.theme-dark .compare-subscription__plan-body-col {
  border-right-color: var(--compare-subscription-border, #404040);
}

.compare-subscription__plan-body-col[data-highlighted=true] {
  background: var(--compare-subscription-highlight-bg, rgba(59, 130, 246, 0.05));
}

.theme-dark .compare-subscription__plan-body-col[data-highlighted=true] {
  background: var(--compare-subscription-highlight-bg, rgba(255, 200, 70, 0.08));
}

.compare-subscription__feature-row {
  border-bottom: 1px solid var(--compare-subscription-border, #e5e7eb);
  min-height: 52px;
}
.compare-subscription__feature-row:last-child {
  border-bottom: none;
}
@media (max-width: 767px) {
  .compare-subscription__feature-row {
    min-height: 48px;
  }
}

.theme-dark .compare-subscription__feature-row {
  border-bottom-color: var(--compare-subscription-border, #404040);
}

.compare-subscription__value-row {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
  color: var(--standard-secondary-site-text-color, #6b7280);
  border-bottom: 1px solid var(--compare-subscription-border, #e5e7eb);
  min-height: 52px;
}
@media (max-width: 767px) {
  .compare-subscription__value-row {
    padding: 12px 10px;
    font-size: 12px;
    min-height: 48px;
  }
}
.compare-subscription__value-row:last-child {
  border-bottom: none;
}

.theme-dark .compare-subscription__value-row {
  border-bottom-color: var(--compare-subscription-border, #404040);
}

/*# sourceMappingURL=compare-subscription.css.map */

.rating {
  width: 100%;
  padding: 60px 20px;
  color: var(--standard-primary-site-text-color, #111827);
  font-family: "Hubot Sans", "Framer Display", "Instrument Serif", "Segoe UI", Arial, sans-serif;
  font-synthesis: weight style;
}

.rating--with-bg {
  background: var(--rating-bg);
}

.rating__inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.rating__title {
  font-family: inherit;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--standard-primary-site-text-color, #111827);
  margin: 0 0 32px;
}

.rating__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.rating__avatars {
  display: flex;
  align-items: center;
}

.rating__avatar {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  border: 3px solid var(--rating-avatar-border, #ffffff);
  overflow: hidden;
  background: var(--rating-avatar-bg, #e5e7eb);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.rating__avatar:not(:first-child) {
  margin-left: -14px;
}

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

.rating__stars-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.rating__stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating__stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.rating__star {
  width: 22px;
  height: 22px;
  color: var(--rating-star-color, #fbbf24);
}

.rating__star--empty {
  color: var(--rating-star-empty-color, #d1d5db);
}

.rating__score {
  font-size: 18px;
  font-weight: 500;
  color: var(--standard-secondary-site-text-color, #6b7280);
}

.rating__reviews {
  font-size: 14px;
  color: var(--standard-secondary-site-text-color, #6b7280);
  opacity: 0.9;
}

.rating__cta {
  margin-top: 8px;
}

.rating__cta .cta-pill {
  --cta-pill-bg: var(--rating-cta-bg, #000000);
  --cta-pill-text: var(--rating-cta-text, #ffffff);
  --cta-pill-hover-bg: var(--rating-cta-hover-bg, #333333);
  --cta-pill-icon-bg: var(--rating-cta-icon-bg, #ffffff);
  --cta-pill-icon-color: var(--rating-cta-icon-color, #000000);
}

@media (max-width: 600px) {
  .rating {
    padding: 40px 16px;
  }
  .rating__proof {
    flex-direction: column;
    gap: 16px;
  }
  .rating__stars-section {
    align-items: center;
  }
  .rating__avatar {
    width: 38px;
    height: 38px;
  }
  .rating__avatar:not(:first-child) {
    margin-left: -12px;
  }
}
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 ~ Copyright 2025 AdobeXP
 ~
 ~ Licensed under the Apache License, Version 2.0 (the "License");
 ~ you may not use this file except in compliance with the License.
 ~ You may obtain a copy of the License at
 ~
 ~     http://www.apache.org/licenses/LICENSE-2.0
 ~
 ~ Unless required by applicable law or agreed to in writing, software
 ~ distributed under the License is distributed on an "AS IS" BASIS,
 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 ~ See the License for the specific language governing permissions and
 ~ limitations under the License.
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/** @define image */
.cmp-image__image {
  width: 100%;
  height: auto;
}
/* Image Alignment Styles */
.cmp-image--align-center {
  text-align: center;
}
.cmp-image--align-center .cmp-image__image {
  display: inline-block;
  width: auto;
  max-width: 100%;
}
.cmp-image--align-left {
  text-align: left;
}
.cmp-image--align-left .cmp-image__image {
  display: inline-block;
  width: auto;
  max-width: 100%;
}
.cmp-image--align-right {
  text-align: right;
}
.cmp-image--align-right .cmp-image__image {
  display: inline-block;
  width: auto;
  max-width: 100%;
}
/* Hover Zoom Effect */
.cmp-image--hover-zoom {
  overflow: hidden;
}
.cmp-image--hover-zoom .cmp-image__image {
  transition: transform 0.3s ease-in-out;
}
.cmp-image--hover-zoom:hover .cmp-image__image {
  transform: scale(1.05);
}
/* Curved Edges */
.cmp-image--curved {
  /* Ensure overflow hidden for hover effect with curved edges */
}
.cmp-image--curved .cmp-image__image {
  border-radius: 12px;
}
.cmp-image--curved.cmp-image--hover-zoom {
  border-radius: 12px;
}

.form-builder {
  width: 100%;
  padding: 40px 20px;
  color: var(--standard-primary-site-text-color, #ffffff);
}
.form-builder--with-bg {
  background: var(--form-builder-bg, var(--site-body-bg));
}

.form-builder__inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.form-builder__inner--card-bg {
  background: var(--form-builder-card-bg, #2a2a2a);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.form-builder__title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--standard-primary-site-text-color, #ffffff);
}

.form-builder__description {
  font-size: 16px;
  line-height: 1.5;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
  margin: 0 0 32px;
}

.form-builder__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-builder__fields {
  width: 100%;
}

.form-builder__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.form-builder__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--standard-primary-site-text-color, #ffffff);
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-builder__required {
  color: #ef4444;
  font-weight: 600;
}

.form-builder__input,
.form-builder__textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  font-family: inherit;
  color: var(--standard-primary-site-text-color, #ffffff);
  background: var(--form-field-bg, rgba(255, 255, 255, 0.05));
  border: 1px solid var(--form-field-border, rgba(255, 255, 255, 0.15));
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  outline: none;
}
.form-builder__input::placeholder,
.form-builder__textarea::placeholder {
  color: var(--standard-secondary-site-text-color, #666666);
}
.form-builder__input:hover,
.form-builder__textarea:hover {
  border-color: var(--form-field-hover-border, rgba(255, 255, 255, 0.3));
}
.form-builder__input:focus,
.form-builder__textarea:focus {
  border-color: var(--primary-text-color, #ffc846);
  box-shadow: 0 0 0 3px rgba(255, 200, 70, 0.3);
  background: var(--form-field-focus-bg, rgba(255, 255, 255, 0.08));
}
.form-builder__input:disabled,
.form-builder__textarea:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-builder__textarea {
  min-height: 120px;
  resize: vertical;
}

.form-builder__toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.form-builder__toggle-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.form-builder__toggle-input:checked + .form-builder__toggle-slider {
  background: var(--primary-text-color, #ffc846);
}
.form-builder__toggle-input:checked + .form-builder__toggle-slider::before {
  transform: translateX(22px);
}
.form-builder__toggle-input:focus + .form-builder__toggle-slider {
  box-shadow: 0 0 0 3px rgba(255, 200, 70, 0.3);
}

.form-builder__toggle-slider {
  position: relative;
  width: 50px;
  height: 28px;
  background: var(--form-field-border, rgba(255, 255, 255, 0.2));
  border-radius: 28px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}
.form-builder__toggle-slider::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.form-builder__toggle-text {
  font-size: 16px;
  color: var(--standard-primary-site-text-color, #ffffff);
}

.form-builder__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.form-builder__checkbox-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.form-builder__checkbox-input:checked + .form-builder__checkbox-box {
  background: var(--primary-text-color, #ffc846);
  border-color: var(--primary-text-color, #ffc846);
}
.form-builder__checkbox-input:checked + .form-builder__checkbox-box svg {
  opacity: 1;
  transform: scale(1);
}
.form-builder__checkbox-input:focus + .form-builder__checkbox-box {
  box-shadow: 0 0 0 3px rgba(255, 200, 70, 0.3);
}

.form-builder__checkbox-box {
  width: 22px;
  height: 22px;
  background: var(--form-field-bg, rgba(255, 255, 255, 0.05));
  border: 2px solid var(--form-field-border, rgba(255, 255, 255, 0.3));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-top: 2px;
}
.form-builder__checkbox-box svg {
  width: 14px;
  height: 14px;
  stroke: var(--site-body-bg, #1e1e1e);
  stroke-width: 3;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
}

.form-builder__checkbox-text {
  font-size: 16px;
  color: var(--standard-primary-site-text-color, #ffffff);
  line-height: 1.5;
}
.form-builder__checkbox-text p {
  display: inline;
  margin: 0;
  padding: 0;
}

.form-builder__checkbox-text a {
  color: var(--primary-text-color, #ffc846);
}

.form-builder__date {
  position: relative;
}

.form-builder__date-input {
  width: 100%;
  padding: 12px 16px;
  padding-right: 44px;
  font-size: 16px;
  font-family: inherit;
  color: var(--standard-primary-site-text-color, #ffffff);
  background: var(--form-field-bg, rgba(255, 255, 255, 0.05));
  border: 1px solid var(--form-field-border, rgba(255, 255, 255, 0.15));
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.form-builder__date-input::placeholder {
  color: var(--standard-secondary-site-text-color, #666666);
}
.form-builder__date-input:hover {
  border-color: var(--form-field-hover-border, rgba(255, 255, 255, 0.3));
}

.form-builder__date-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--standard-secondary-site-text-color, #666666);
  pointer-events: none;
}
.form-builder__date-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.form-builder__calendar {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 100;
  background: var(--form-dropdown-bg, #2a2a2a);
  border: 1px solid var(--form-field-border, rgba(255, 255, 255, 0.15));
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  min-width: 280px;
}

.form-builder__date--open .form-builder__calendar {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.form-builder__calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.form-builder__calendar-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--standard-primary-site-text-color, #ffffff);
}

.form-builder__calendar-nav {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: var(--standard-secondary-site-text-color, #666666);
  transition: all 0.2s ease;
}
.form-builder__calendar-nav:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--standard-primary-site-text-color, #ffffff);
}
.form-builder__calendar-nav svg {
  width: 18px;
  height: 18px;
}

.form-builder__calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}
.form-builder__calendar-weekdays span {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--standard-secondary-site-text-color, #666666);
  padding: 4px;
}

.form-builder__calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.form-builder__calendar-day {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--standard-primary-site-text-color, #ffffff);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.form-builder__calendar-day:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
}
.form-builder__calendar-day--other {
  color: var(--standard-secondary-site-text-color, #444444);
}
.form-builder__calendar-day--today {
  border: 1px solid var(--primary-text-color, #ffc846);
}
.form-builder__calendar-day--selected {
  background: var(--primary-text-color, #ffc846) !important;
  color: var(--site-body-bg, #1e1e1e);
}
.form-builder__calendar-day:disabled {
  cursor: default;
  opacity: 0.3;
}

.form-builder__time {
  position: relative;
}

.form-builder__time-input {
  width: 100%;
  padding: 12px 16px;
  padding-right: 44px;
  font-size: 16px;
  font-family: inherit;
  color: var(--standard-primary-site-text-color, #ffffff);
  background: var(--form-field-bg, rgba(255, 255, 255, 0.05));
  border: 1px solid var(--form-field-border, rgba(255, 255, 255, 0.15));
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.form-builder__time-input::placeholder {
  color: var(--standard-secondary-site-text-color, #666666);
}
.form-builder__time-input:hover {
  border-color: var(--form-field-hover-border, rgba(255, 255, 255, 0.3));
}

.form-builder__time-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--standard-secondary-site-text-color, #666666);
  pointer-events: none;
}
.form-builder__time-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.form-builder__time-picker {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 100;
  display: flex;
  gap: 8px;
  background: var(--form-dropdown-bg, #2a2a2a);
  border: 1px solid var(--form-field-border, rgba(255, 255, 255, 0.15));
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.form-builder__time--open .form-builder__time-picker {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.form-builder__time-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-builder__time-column-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--standard-secondary-site-text-color, #666666);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-builder__time-hours,
.form-builder__time-minutes {
  height: 200px;
  overflow-y: auto;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form-builder__time-hours::-webkit-scrollbar,
.form-builder__time-minutes::-webkit-scrollbar {
  width: 6px;
}
.form-builder__time-hours::-webkit-scrollbar-track,
.form-builder__time-minutes::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}
.form-builder__time-hours::-webkit-scrollbar-thumb,
.form-builder__time-minutes::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}
.form-builder__time-hours::-webkit-scrollbar-thumb:hover,
.form-builder__time-minutes::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.form-builder__time-option {
  width: 48px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--standard-primary-site-text-color, #ffffff);
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.form-builder__time-option:hover {
  background: rgba(255, 255, 255, 0.1);
}
.form-builder__time-option--selected {
  background: var(--primary-text-color, #ffc846) !important;
  color: var(--site-body-bg, #1e1e1e);
}

.form-builder__time-separator {
  font-size: 24px;
  font-weight: 700;
  color: var(--standard-secondary-site-text-color, #666666);
  display: flex;
  align-items: center;
  padding-top: 28px;
}

.form-builder__dropdown {
  position: relative;
}

.form-builder__dropdown-trigger {
  width: 100%;
  padding: 12px 16px;
  padding-right: 44px;
  font-size: 16px;
  font-family: inherit;
  color: var(--standard-primary-site-text-color, #ffffff);
  background: var(--form-field-bg, rgba(255, 255, 255, 0.05));
  border: 1px solid var(--form-field-border, rgba(255, 255, 255, 0.15));
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
.form-builder__dropdown-trigger:hover {
  border-color: var(--form-field-hover-border, rgba(255, 255, 255, 0.3));
}

.form-builder__dropdown-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--standard-secondary-site-text-color, #666666);
}
.form-builder__dropdown--has-value .form-builder__dropdown-text {
  color: var(--standard-primary-site-text-color, #ffffff);
}

.form-builder__dropdown-icon {
  width: 20px;
  height: 20px;
  color: var(--standard-secondary-site-text-color, #666666);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 8px;
}
.form-builder__dropdown-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}
.form-builder__dropdown--open .form-builder__dropdown-icon {
  transform: rotate(180deg);
}

.form-builder__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--form-dropdown-bg, #2a2a2a);
  border: 1px solid var(--form-field-border, rgba(255, 255, 255, 0.15));
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  overflow: hidden;
}

.form-builder__dropdown--open .form-builder__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.form-builder__dropdown-search-wrapper {
  padding: 12px;
  border-bottom: 1px solid var(--form-field-border, rgba(255, 255, 255, 0.1));
}

.form-builder__dropdown-search {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  font-family: inherit;
  color: var(--standard-primary-site-text-color, #ffffff);
  background: var(--form-field-bg, rgba(255, 255, 255, 0.05));
  border: 1px solid var(--form-field-border, rgba(255, 255, 255, 0.15));
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s ease;
}
.form-builder__dropdown-search::placeholder {
  color: var(--standard-secondary-site-text-color, #666666);
}
.form-builder__dropdown-search:focus {
  border-color: var(--primary-text-color, #ffc846);
}

.form-builder__dropdown-options {
  max-height: 240px;
  overflow-y: auto;
  padding: 8px;
}
.form-builder__dropdown-options::-webkit-scrollbar {
  width: 6px;
}
.form-builder__dropdown-options::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}
.form-builder__dropdown-options::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}
.form-builder__dropdown-options::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.form-builder__dropdown-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--standard-primary-site-text-color, #ffffff);
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.form-builder__dropdown-option:hover {
  background: rgba(255, 255, 255, 0.08);
}
.form-builder__dropdown-option--selected {
  background: rgba(255, 200, 70, 0.15);
}
.form-builder__dropdown-option--selected .form-builder__dropdown-checkbox {
  background: var(--primary-text-color, #ffc846);
  border-color: var(--primary-text-color, #ffc846);
}
.form-builder__dropdown-option--selected .form-builder__dropdown-checkbox svg {
  opacity: 1;
}

.form-builder__dropdown-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid var(--form-field-border, rgba(255, 255, 255, 0.3));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.form-builder__dropdown-checkbox svg {
  width: 12px;
  height: 12px;
  stroke: var(--site-body-bg, #1e1e1e);
  stroke-width: 3;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.form-builder__dropdown-value {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.form-builder__actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.form-builder__submit,
.form-builder__reset {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 140px;
}
.form-builder__submit:disabled,
.form-builder__reset:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-builder__submit {
  background: var(--primary-text-color, #ffc846);
  color: var(--site-body-bg, #1e1e1e);
  border: none;
}
.form-builder__submit:hover:not(:disabled) {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
.form-builder__submit:active:not(:disabled) {
  transform: translateY(0);
}
.form-builder__submit--loading {
  position: relative;
  color: transparent;
}
.form-builder__submit--loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--site-body-bg, #1e1e1e);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.form-builder__reset {
  background: transparent;
  color: var(--standard-secondary-site-text-color, #666666);
  border: 1px solid var(--form-field-border, rgba(255, 255, 255, 0.2));
}
.form-builder__reset:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.05);
  color: var(--standard-primary-site-text-color, #ffffff);
  border-color: rgba(255, 255, 255, 0.3);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.form-builder__field--error .form-builder__input,
.form-builder__field--error .form-builder__textarea,
.form-builder__field--error .form-builder__date-input,
.form-builder__field--error .form-builder__time-input,
.form-builder__field--error .form-builder__dropdown-trigger {
  border-color: #ef4444;
}
.form-builder__field--error .form-builder__input:focus,
.form-builder__field--error .form-builder__textarea:focus,
.form-builder__field--error .form-builder__date-input:focus,
.form-builder__field--error .form-builder__time-input:focus,
.form-builder__field--error .form-builder__dropdown-trigger:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}
.form-builder__field--error .form-builder__toggle-slider,
.form-builder__field--error .form-builder__checkbox-box {
  border-color: #ef4444;
}

.form-builder__field-error {
  font-size: 13px;
  color: #ef4444;
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 20px;
}
.form-builder__field-error::before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ef4444' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='8' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'%3E%3C/line%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
.form-builder__field-error:empty {
  display: none;
}

.form-builder__dialog-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.form-builder__dialog-overlay--visible {
  opacity: 1;
  visibility: visible;
}

.form-builder__dialog {
  background: var(--form-dropdown-bg, #2a2a2a);
  border-radius: 16px;
  padding: 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.form-builder__dialog-overlay--visible .form-builder__dialog {
  transform: scale(1);
}
.form-builder__dialog--success .form-builder__dialog-icon {
  color: #22c55e;
}
.form-builder__dialog--error .form-builder__dialog-icon {
  color: #ef4444;
}

.form-builder__dialog-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}
.form-builder__dialog-icon svg {
  width: 100%;
  height: 100%;
}

.form-builder__dialog-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--standard-primary-site-text-color, #ffffff);
  margin: 0 0 12px;
}

.form-builder__dialog-message {
  font-size: 16px;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
  margin: 0 0 16px;
  line-height: 1.5;
}

.form-builder__dialog-response {
  font-size: 14px;
  color: var(--standard-secondary-site-text-color, #888888);
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  word-break: break-word;
}

.form-builder__dialog-close {
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  background: var(--primary-text-color, #ffc846);
  color: var(--site-body-bg, #1e1e1e);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.form-builder__dialog-close:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
.form-builder__dialog-close:active {
  transform: translateY(0);
}

.form-builder__helper {
  font-size: 13px;
  color: var(--standard-secondary-site-text-color, #666666);
  margin-top: 4px;
}

.form-builder__row {
  display: grid;
  gap: 24px;
}
@media (min-width: 576px) {
  .form-builder__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .form-builder {
    padding: 60px 24px;
  }
  .form-builder__form {
    gap: 28px;
  }
  .form-builder__actions {
    flex-wrap: nowrap;
  }
}
@media (min-width: 1024px) {
  .form-builder {
    padding: 80px 24px;
  }
  .form-builder__title {
    margin-bottom: 12px;
  }
  .form-builder__description {
    margin-bottom: 40px;
  }
}
.theme-light .form-builder__input,
.theme-light .form-builder__textarea,
.theme-light .form-builder__date-input,
.theme-light .form-builder__time-input,
.theme-light .form-builder__dropdown-trigger,
.theme-light .form-builder__dropdown-search {
  background: var(--form-field-bg, rgba(0, 0, 0, 0.03));
  border-color: var(--form-field-border, rgba(0, 0, 0, 0.15));
}
.theme-light .form-builder__input:hover,
.theme-light .form-builder__textarea:hover,
.theme-light .form-builder__date-input:hover,
.theme-light .form-builder__time-input:hover,
.theme-light .form-builder__dropdown-trigger:hover,
.theme-light .form-builder__dropdown-search:hover {
  border-color: var(--form-field-hover-border, rgba(0, 0, 0, 0.3));
}
.theme-light .form-builder__input:focus,
.theme-light .form-builder__textarea:focus,
.theme-light .form-builder__date-input:focus,
.theme-light .form-builder__time-input:focus,
.theme-light .form-builder__dropdown-trigger:focus,
.theme-light .form-builder__dropdown-search:focus {
  background: var(--form-field-focus-bg, rgba(0, 0, 0, 0.05));
}
.theme-light .form-builder__toggle-slider {
  background: var(--form-field-border, rgba(0, 0, 0, 0.2));
}
.theme-light .form-builder__checkbox-box {
  background: var(--form-field-bg, rgba(0, 0, 0, 0.03));
  border-color: var(--form-field-border, rgba(0, 0, 0, 0.3));
}
.theme-light .form-builder__calendar,
.theme-light .form-builder__time-picker,
.theme-light .form-builder__dropdown-menu,
.theme-light .form-builder__dialog {
  background: var(--form-dropdown-bg, #ffffff);
  border-color: var(--form-field-border, rgba(0, 0, 0, 0.1));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.theme-light .form-builder__calendar-day:hover:not(:disabled),
.theme-light .form-builder__time-option:hover,
.theme-light .form-builder__dropdown-option:hover {
  background: rgba(0, 0, 0, 0.05);
}
.theme-light .form-builder__dropdown-option--selected {
  background: rgba(255, 200, 70, 0.2);
}
.theme-light .form-builder__reset {
  border-color: var(--form-field-border, rgba(0, 0, 0, 0.2));
}
.theme-light .form-builder__reset:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.3);
}
.theme-light .form-builder__inner--card-bg {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.theme-light .form-builder__dialog-overlay {
  background: rgba(0, 0, 0, 0.5);
}

/* ========================================
   AEM Layout Container - Multi-column Support
   
   DOM structure produced by AEM:
   .form-builder__fields              (our wrapper div)
     > .aem-Grid.aem-Grid--12        (AEM responsive grid - becomes the flex parent)
       > .aem-GridColumn              (AEM column wrappers - made invisible via display:contents)
         > .form-builder__field       (our field component - becomes the actual flex item)
       > .aem-Grid-newComponent       (AEM dropzone for adding components)
   
   Strategy: use display:contents on .aem-GridColumn to make it
   "invisible" in the layout, so .form-builder__field elements
   become direct flex items of .aem-Grid.
   ======================================== */

/* Convert AEM's float-based grid to flexbox */
.form-builder__fields > .aem-Grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 24px;
}

/* Remove AEM's clearfix pseudo-elements which become unwanted flex items */
.form-builder__fields > .aem-Grid::before,
.form-builder__fields > .aem-Grid::after {
  display: none !important;
}

/* Make AEM GridColumn invisible in the box model.
   Its children (.form-builder__field) become direct flex items of .aem-Grid */
.form-builder__fields > .aem-Grid > .aem-GridColumn {
  display: contents !important;
}

/* Hide AEM editor metadata elements (cq tags) that would become flex items */
.form-builder__fields > .aem-Grid > .aem-GridColumn > cq {
  display: none;
}

/* Keep the dropzone (new component area) full width */
.form-builder__fields > .aem-Grid > .aem-Grid-newComponent {
  flex: 0 0 100%;
}

/* Default: form fields take full width */
.form-builder__fields .form-builder__field {
  flex: 0 0 100%;
}

/* --- Half width (1/2) --- */
@media (min-width: 576px) {
  .form-builder__fields .form-builder__field--half {
    flex: 0 0 calc(50% - 12px);
  }
}

/* --- One third (1/3) --- */
@media (min-width: 576px) {
  .form-builder__fields .form-builder__field--third {
    flex: 0 0 calc(33.333% - 16px);
  }
}

/* --- Two thirds (2/3) --- */
@media (min-width: 576px) {
  .form-builder__fields .form-builder__field--two-thirds {
    flex: 0 0 calc(66.666% - 8px);
  }
}

/* ============================================
   Hidden Text Field (Author Mode Placeholder)
   ============================================ */
.form-builder__field--hidden {
  margin: 0;
  padding: 0;
}
.form-builder__hidden-placeholder {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px dashed rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  font-size: 13px;
  color: #666;
}
.form-builder__hidden-placeholder svg {
  flex-shrink: 0;
  color: #999;
}
.form-builder__hidden-placeholder strong {
  color: #333;
}
.form-builder__hidden-placeholder em {
  color: #888;
  font-style: italic;
}

.video-article-grid {
  width: 100%;
  padding: 60px 20px;
  color: var(--standard-primary-site-text-color, #111827);
  font-family: "Hubot Sans", "Framer Display", "Instrument Serif", "Segoe UI", Arial, sans-serif;
  font-synthesis: weight style;
}
.video-article-grid--with-bg {
  background: var(--video-article-grid-bg);
}

.video-article-grid__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.video-article-grid__title {
  font-family: inherit;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--standard-primary-site-text-color, #111827);
  margin: 0 0 16px;
}

.video-article-grid__subtitle {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--standard-secondary-site-text-color, #6b7280);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 0 48px;
}

.video-article-grid__grid {
  width: 100%;
}

/* ------------------------------------------------------------------ */
/*  Toolbar  (search bar + sort dropdowns)                             */
/* ------------------------------------------------------------------ */
.video-article-grid__toolbar {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin-bottom: 28px;
}

.video-article-grid__search {
  position: relative;
  flex: 1;
  min-width: 0;
}

.video-article-grid__search-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
  color: var(--standard-secondary-site-text-color, #6b7280);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-article-grid__search-icon svg {
  width: 100%;
  height: 100%;
}

.video-article-grid__search-input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px 14px 48px;
  font-family: inherit;
  font-size: 15px;
  color: var(--standard-primary-site-text-color, #111827);
  background: var(--video-article-grid-search-bg, rgba(255, 255, 255, 0.06));
  border: 1px solid var(--video-article-grid-search-border, rgba(255, 255, 255, 0.12));
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.video-article-grid__search-input::placeholder {
  color: var(--standard-secondary-site-text-color, #6b7280);
  opacity: 0.7;
}
.video-article-grid__search-input:focus {
  border-color: var(--video-article-grid-search-focus-border, rgba(255, 255, 255, 0.3));
  box-shadow: 0 0 0 3px var(--video-article-grid-search-focus-ring, rgba(255, 255, 255, 0.06));
}

.video-article-grid__sort-select {
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  padding: 10px 36px 10px 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--standard-primary-site-text-color, #111827);
  background-color: var(--video-article-grid-dropdown-bg, rgba(255, 255, 255, 0.06));
  border: 1px solid var(--video-article-grid-dropdown-border, rgba(255, 255, 255, 0.12));
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
}
.video-article-grid__sort-select:focus {
  border-color: var(--video-article-grid-dropdown-focus-border, rgba(255, 255, 255, 0.3));
  box-shadow: 0 0 0 3px var(--video-article-grid-dropdown-focus-ring, rgba(255, 255, 255, 0.06));
}
.video-article-grid__sort-select option {
  background: var(--video-article-grid-dropdown-option-bg, #1e1e1e);
  color: var(--standard-primary-site-text-color, #111827);
}

/* ------------------------------------------------------------------ */
/*  Card grid                                                          */
/* ------------------------------------------------------------------ */
.video-article-grid__cards {
  display: grid;
  grid-template-columns: repeat(var(--vag-cols, 3), 1fr);
  gap: 28px;
  width: 100%;
}

.video-article-grid__card {
  background: var(--video-article-grid-card-bg, #1a1a2e);
  border: 1px solid var(--video-article-grid-card-border, rgba(255, 255, 255, 0.1));
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.video-article-grid__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.video-article-grid__thumbnail {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--video-article-grid-thumb-bg, #0d0d1a);
  cursor: pointer;
  overflow: hidden;
  text-decoration: none;
}
.video-article-grid__thumbnail::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--video-article-grid-thumb-overlay, rgba(0, 0, 0, 0.15));
  z-index: 1;
  transition: background 0.25s ease;
}
.video-article-grid__thumbnail:hover::before {
  background: rgba(0, 0, 0, 0.05);
}
.video-article-grid__thumbnail img,
.video-article-grid__thumbnail video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.video-article-grid__play-btn {
  position: relative;
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--video-article-grid-play-btn-bg, rgba(255, 255, 255, 0.12));
  border: 2px solid var(--video-article-grid-play-btn-border, rgba(255, 255, 255, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(4px);
}
.video-article-grid__play-btn svg {
  width: 22px;
  height: 22px;
  color: var(--video-article-grid-play-btn-color, rgba(255, 255, 255, 0.7));
  margin-left: 3px;
  transition: color 0.25s ease;
}
.video-article-grid__thumbnail:hover .video-article-grid__play-btn {
  background: var(--video-article-grid-play-btn-hover-bg, rgba(255, 255, 255, 0.22));
  transform: scale(1.08);
}
.video-article-grid__thumbnail:hover .video-article-grid__play-btn svg {
  color: var(--video-article-grid-play-btn-hover-color, #ffffff);
}

.video-article-grid__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.video-article-grid__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--video-article-grid-badge-bg, rgba(255, 255, 255, 0.08));
  color: var(--video-article-grid-badge-text, #a0a0b8);
  border: 1px solid var(--video-article-grid-badge-border, rgba(255, 255, 255, 0.1));
}

.video-article-grid__card-title {
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--standard-primary-site-text-color, #111827);
  margin: 0;
}
.video-article-grid__card-title a {
  color: inherit;
  text-decoration: none;
}
.video-article-grid__card-title a:hover {
  text-decoration: underline;
}

.video-article-grid__description {
  font-size: 14px;
  line-height: 1.65;
  color: var(--standard-secondary-site-text-color, #6b7280);
  margin: 0;
}

.video-article-grid__empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 48px 16px;
  font-size: 15px;
  color: var(--standard-secondary-site-text-color, #6b7280);
}

/* ------------------------------------------------------------------ */
/*  Pagination                                                         */
/* ------------------------------------------------------------------ */
.video-article-grid__pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  width: 100%;
  margin-top: 32px;
}

.video-article-grid__page-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  background: var(--video-article-grid-page-btn-bg, transparent);
  color: var(--video-article-grid-page-btn-text, var(--standard-primary-site-text-color, #ffffff));
  border: 1px solid var(--video-article-grid-page-btn-border, var(--standard-primary-site-text-color, #ffffff));
}
.video-article-grid__page-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.video-article-grid__page-btn:hover:not(:disabled) {
  background: var(--video-article-grid-page-btn-hover-bg, var(--standard-primary-site-text-color, #ffffff));
  color: var(--video-article-grid-page-btn-hover-text, var(--site-body-bg, #000000));
}
.video-article-grid__page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.video-article-grid__page-indicator {
  font-size: 13px;
  font-weight: 500;
  color: var(--standard-secondary-site-text-color, #6b7280);
  white-space: nowrap;
  user-select: none;
}

/* ------------------------------------------------------------------ */
/*  Responsive                                                         */
/* ------------------------------------------------------------------ */
@media (max-width: 900px) {
  .video-article-grid__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .video-article-grid {
    padding: 40px 16px;
  }
  .video-article-grid__subtitle {
    margin-bottom: 32px;
  }
  .video-article-grid__toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .video-article-grid__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .video-article-grid__play-btn {
    width: 48px;
    height: 48px;
  }
  .video-article-grid__play-btn svg {
    width: 18px;
    height: 18px;
  }
  .video-article-grid__search-input {
    font-size: 14px;
    padding: 12px 14px 12px 44px;
  }
  .video-article-grid__pagination {
    justify-content: center;
    flex-wrap: wrap;
  }
  .video-article-grid__page-btn {
    padding: 8px 14px;
    font-size: 13px;
  }
}
/* ------------------------------------------------------------------ */
/*  Theme fallbacks (when component CSS vars are not yet emitted)      */
/* ------------------------------------------------------------------ */
.theme-light .video-article-grid--with-bg {
  background: var(--video-article-grid-bg, radial-gradient(circle, var(--main-theme-color) 0%, var(--site-body-bg) 70%));
}
.theme-light .video-article-grid__search-input {
  background: var(--video-article-grid-search-bg, rgba(0, 0, 0, 0.03));
  border-color: var(--video-article-grid-search-border, rgba(0, 0, 0, 0.12));
}
.theme-light .video-article-grid__search-input:focus {
  border-color: var(--video-article-grid-search-focus-border, rgba(0, 0, 0, 0.3));
  box-shadow: 0 0 0 3px var(--video-article-grid-search-focus-ring, rgba(0, 0, 0, 0.06));
}
.theme-light .video-article-grid__sort-select {
  background-color: var(--video-article-grid-dropdown-bg, rgba(0, 0, 0, 0.03));
  border-color: var(--video-article-grid-dropdown-border, rgba(0, 0, 0, 0.12));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}
.theme-light .video-article-grid__sort-select:focus {
  border-color: var(--video-article-grid-dropdown-focus-border, rgba(0, 0, 0, 0.3));
  box-shadow: 0 0 0 3px var(--video-article-grid-dropdown-focus-ring, rgba(0, 0, 0, 0.06));
}
.theme-light .video-article-grid__sort-select option {
  background: var(--video-article-grid-dropdown-option-bg, #ffffff);
}
.theme-light .video-article-grid__card {
  background: var(--video-article-grid-card-bg, #ffffff);
  border-color: var(--video-article-grid-card-border, #e5e7eb);
}
.theme-light .video-article-grid__card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}
.theme-light .video-article-grid__thumbnail {
  background: var(--video-article-grid-thumb-bg, #e8f4f8);
}
.theme-light .video-article-grid__thumbnail::before {
  background: var(--video-article-grid-thumb-overlay, rgba(0, 0, 0, 0.04));
}
.theme-light .video-article-grid__play-btn {
  background: var(--video-article-grid-play-btn-bg, rgba(0, 0, 0, 0.06));
  border-color: var(--video-article-grid-play-btn-border, rgba(0, 0, 0, 0.12));
}
.theme-light .video-article-grid__play-btn svg {
  color: var(--video-article-grid-play-btn-color, rgba(0, 0, 0, 0.45));
}
.video-article-grid__thumbnail:hover .theme-light .video-article-grid__play-btn {
  background: var(--video-article-grid-play-btn-hover-bg, rgba(0, 0, 0, 0.12));
}
.video-article-grid__thumbnail:hover .theme-light .video-article-grid__play-btn svg {
  color: var(--video-article-grid-play-btn-hover-color, #000000);
}
.theme-light .video-article-grid__badge {
  background: var(--video-article-grid-badge-bg, #f3f4f6);
  color: var(--video-article-grid-badge-text, #6b7280);
  border-color: var(--video-article-grid-badge-border, #e5e7eb);
}
.theme-light .video-article-grid__page-btn {
  color: var(--video-article-grid-page-btn-text, #000000);
  border-color: var(--video-article-grid-page-btn-border, #000000);
}
.theme-light .video-article-grid__page-btn:hover:not(:disabled) {
  background: var(--video-article-grid-page-btn-hover-bg, #000000);
  color: var(--video-article-grid-page-btn-hover-text, #ffffff);
}

.theme-dark .video-article-grid--with-bg {
  background: var(--video-article-grid-bg, linear-gradient(180deg, #0c0c0c 0%, var(--site-body-bg) 100%));
}
.theme-dark .video-article-grid__search-input {
  background: var(--video-article-grid-search-bg, rgba(255, 255, 255, 0.05));
  border-color: var(--video-article-grid-search-border, rgba(255, 255, 255, 0.1));
}
.theme-dark .video-article-grid__search-input:focus {
  border-color: var(--video-article-grid-search-focus-border, rgba(255, 255, 255, 0.28));
  box-shadow: 0 0 0 3px var(--video-article-grid-search-focus-ring, rgba(255, 255, 255, 0.06));
}
.theme-dark .video-article-grid__sort-select {
  background-color: var(--video-article-grid-dropdown-bg, rgba(255, 255, 255, 0.06));
  border-color: var(--video-article-grid-dropdown-border, rgba(255, 255, 255, 0.1));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}
.theme-dark .video-article-grid__sort-select:focus {
  border-color: var(--video-article-grid-dropdown-focus-border, rgba(255, 255, 255, 0.28));
  box-shadow: 0 0 0 3px var(--video-article-grid-dropdown-focus-ring, rgba(255, 255, 255, 0.06));
}
.theme-dark .video-article-grid__sort-select option {
  background: var(--video-article-grid-dropdown-option-bg, #1e1e1e);
}
.theme-dark .video-article-grid__card {
  background: var(--video-article-grid-card-bg, #1a1a2e);
  border-color: var(--video-article-grid-card-border, rgba(255, 255, 255, 0.08));
}
.theme-dark .video-article-grid__thumbnail {
  background: var(--video-article-grid-thumb-bg, #0d0d1a);
}
.theme-dark .video-article-grid__thumbnail::before {
  background: var(--video-article-grid-thumb-overlay, rgba(0, 0, 0, 0.15));
}
.theme-dark .video-article-grid__play-btn {
  background: var(--video-article-grid-play-btn-bg, rgba(255, 255, 255, 0.1));
  border-color: var(--video-article-grid-play-btn-border, rgba(255, 255, 255, 0.18));
}
.theme-dark .video-article-grid__play-btn svg {
  color: var(--video-article-grid-play-btn-color, rgba(255, 255, 255, 0.6));
}
.video-article-grid__thumbnail:hover .theme-dark .video-article-grid__play-btn {
  background: var(--video-article-grid-play-btn-hover-bg, rgba(255, 255, 255, 0.2));
}
.video-article-grid__thumbnail:hover .theme-dark .video-article-grid__play-btn svg {
  color: var(--video-article-grid-play-btn-hover-color, #ffffff);
}
.theme-dark .video-article-grid__badge {
  background: var(--video-article-grid-badge-bg, rgba(255, 255, 255, 0.06));
  color: var(--video-article-grid-badge-text, #9ca3af);
  border-color: var(--video-article-grid-badge-border, rgba(255, 255, 255, 0.08));
}
.theme-dark .video-article-grid__page-btn {
  color: var(--video-article-grid-page-btn-text, #ffffff);
  border-color: var(--video-article-grid-page-btn-border, #ffffff);
}
.theme-dark .video-article-grid__page-btn:hover:not(:disabled) {
  background: var(--video-article-grid-page-btn-hover-bg, #ffffff);
  color: var(--video-article-grid-page-btn-hover-text, #000000);
}

/*# sourceMappingURL=video-article-grid.css.map */

.hero {
  position: relative;
  width: 100%;
  padding: 2.5rem 0 3rem;
  overflow: hidden;
  box-sizing: border-box;
  color: var(--standard-primary-site-text-color, #111827);
}
.hero--with-bg {
  background: var(--hero-bg, var(--site-body-bg));
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}

.hero__logo-wrap {
  margin-bottom: 1.25rem;
}

.hero__logo {
  width: min(220px, 60vw);
  height: auto;
  margin: 0 auto;
  display: block;
}

.hero__logo--light {
  display: none;
}

.theme-light .hero__logo--light,
.theme-dark .hero__logo--dark {
  display: block;
}

.theme-light .hero__logo--dark,
.theme-dark .hero__logo--light {
  display: none;
}

.hero__logo--float {
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.hero__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--standard-primary-site-text-color, #fff);
  margin: 0 0 1rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero__subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
  margin: 0 auto 1.5rem;
  max-width: 48rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease 0.12s, transform 0.6s ease 0.12s;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease 0.24s, transform 0.6s ease 0.24s;
}

.hero__logo-wrap {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero.is-visible .hero__logo-wrap,
.hero.is-visible .hero__title,
.hero.is-visible .hero__subtitle,
.hero.is-visible .hero__actions {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero__logo--float {
    animation: none;
  }
  .hero__logo-wrap,
  .hero__title,
  .hero__subtitle,
  .hero__actions {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/*# sourceMappingURL=hero.css.map */

.cards {
  width: 100%;
  padding: 2.5rem 1.25rem;
  box-sizing: border-box;
}

.cards--with-bg {
  background: var(--cards-bg, var(--site-body-bg, #1e1e1e));
}

.cards--muted {
  background: var(--cards-muted-bg, linear-gradient(180deg, #0c0c0c 0%, var(--site-body-bg, #1e1e1e) 100%));
}

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

.cards__header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.cards__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--standard-primary-site-text-color, #fff);
  margin: 0 0 0.5rem;
}

.cards__subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
  max-width: 640px;
  margin: 0 auto;
}

.cards__grid {
  display: grid;
  gap: 1.5rem;
}

.cards__grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.cards__grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.cards__grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.cards__item {
  background: var(--cards-item-bg, var(--count-up-card-bg, #2a2a2a));
  border: 1px solid var(--cards-item-border, rgba(255, 255, 255, 0.08));
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s ease;
}

.cards__item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cards__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.cards__item.is-visible:hover {
  transform: translateY(-4px);
}

.cards__item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--cards-item-icon-bg, rgba(255, 255, 255, 0.06));
  border-radius: 10px;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary-text-color, #ffc846);
}

.cards__item-code {
  display: inline-block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-text-color, #ffc846);
  background: var(--cards-item-icon-bg, rgba(255, 255, 255, 0.06));
  padding: 0.35rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.cards__item-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--standard-primary-site-text-color, #fff);
  margin: 0 0 0.5rem;
}

.cards__item-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
  margin: 0;
}

.cards__item-list {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
  font-size: 0.95rem;
}

.cards__item-list li {
  margin-bottom: 0.35rem;
}

@media (prefers-reduced-motion: reduce) {
  .cards__item {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .cards__item:hover {
    transform: none;
  }
}

/*# sourceMappingURL=cards.css.map */

.call-to-action {
  width: 100%;
  padding: 2.5rem 1.25rem;
  box-sizing: border-box;
}

.call-to-action--with-bg {
  background: var(--call-to-action-bg, linear-gradient(180deg, #0c0c0c 0%, var(--site-body-bg, #1e1e1e) 100%));
}

.call-to-action__inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.call-to-action.is-visible .call-to-action__inner {
  opacity: 1;
  transform: translateY(0);
}

.call-to-action__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--standard-primary-site-text-color, #fff);
  margin: 0 0 0.5rem;
}

.call-to-action__subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
  margin: 0 0 2rem;
}

.call-to-action__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
  .call-to-action__inner {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/*# sourceMappingURL=call-to-action.css.map */

.page-header {
  width: 100%;
  padding: 2rem 1.25rem 1.5rem;
  text-align: center;
  box-sizing: border-box;
  background: linear-gradient(135deg, var(--lead-banner-gradient-start, #212020) 0%, var(--lead-banner-gradient-stop-25, #aa7802) 50%, var(--lead-banner-gradient-end, #212020) 100%);
  opacity: 1;
}

.page-header__inner {
  max-width: 960px;
  margin: 0 auto;
}

.page-header__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--standard-primary-site-text-color, #fff);
  margin: 0 0 0.5rem;
  animation: pageHeaderFadeIn 0.6s ease forwards;
}

.page-header__subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
  margin: 0;
  animation: pageHeaderFadeIn 0.6s ease 0.12s forwards;
  opacity: 0;
}

@keyframes pageHeaderFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-header__title,
  .page-header__subtitle {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/*# sourceMappingURL=page-header.css.map */

.prose {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
  box-sizing: border-box;
}

.prose h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--standard-primary-site-text-color, #fff);
  margin: 2rem 0 1rem;
}

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

.prose h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--standard-primary-site-text-color, #fff);
  margin: 1.5rem 0 0.75rem;
}

.prose p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
  margin: 0 0 1rem;
}

.prose ul,
.prose ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
}

.prose li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.prose a {
  color: var(--primary-text-color, #ffc846);
  text-decoration: none;
}

.prose a:hover {
  text-decoration: underline;
}

.prose strong {
  color: var(--standard-primary-site-text-color, #fff);
  font-weight: 600;
}

.prose code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9em;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  color: var(--primary-text-color, #ffc846);
}

.prose pre {
  background: rgba(255, 255, 255, 0.06);
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 0 0 1rem;
}

.prose pre code {
  background: none;
  padding: 0;
  color: var(--standard-primary-site-text-color, #fff);
}

.prose__block {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.prose__block.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .prose__block {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/*# sourceMappingURL=prose.css.map */

.data-table {
  width: 100%;
  padding: 4rem 1.5rem;
  box-sizing: border-box;
}

.data-table--with-bg {
  background: var(--data-table-bg, linear-gradient(180deg, #0c0c0c 0%, var(--site-body-bg, #1e1e1e) 100%));
}

.data-table__inner {
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.data-table.is-visible .data-table__inner {
  opacity: 1;
  transform: translateY(0);
}

.data-table__header {
  text-align: center;
  margin-bottom: 2rem;
}

.data-table__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--standard-primary-site-text-color, #fff);
  margin: 0 0 0.5rem;
}

.data-table__subtitle {
  font-size: 1rem;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
  margin: 0;
}

.data-table__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.data-table__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table__table th,
.data-table__table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--data-table-cell-border, rgba(255, 255, 255, 0.1));
}

.data-table__table th {
  background: var(--data-table-header-bg, rgba(255, 255, 255, 0.06));
  font-weight: 600;
  color: var(--standard-primary-site-text-color, #fff);
}

.data-table__table td {
  color: var(--standard-secondary-site-text-color, #a2a2a2);
}

.data-table__table td code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.85em;
  color: var(--primary-text-color, #ffc846);
}

.data-table__table tbody tr {
  transition: background-color 0.2s ease;
}

.data-table__table tbody tr:hover {
  background: var(--data-table-row-hover-bg, rgba(255, 255, 255, 0.04));
}

@media (prefers-reduced-motion: reduce) {
  .data-table__inner {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/*# sourceMappingURL=data-table.css.map */

.analytics-chart {
  width: 100%;
  padding: 80px 20px;
  color: var(--standard-primary-site-text-color, #ffffff);
}
.analytics-chart--with-bg {
  background: var(--analytics-chart-bg, linear-gradient(180deg, #0c0c0c 0%, var(--site-body-bg, #1e1e1e) 100%));
}
.analytics-chart--muted {
  background: var(--analytics-chart-muted-bg, var(--site-body-bg, #1e1e1e));
}

.analytics-chart__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.analytics-chart__header {
  text-align: center;
  margin-bottom: 48px;
}

.analytics-chart__title {
  font-size: clamp(30px, 4.5vw, 44px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--standard-primary-site-text-color, #ffffff);
}

.analytics-chart__subtitle {
  font-size: clamp(14px, 2vw, 17px);
  line-height: 1.6;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
  margin: 0 auto;
  max-width: 680px;
}

.analytics-chart__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* ------------------------------------------------------------------ panels */
.analytics-chart__panel {
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-radius: 16px;
  background: var(--analytics-chart-panel-bg, #2a2a2a);
  border: 1px solid var(--analytics-chart-panel-border, rgba(255, 255, 255, 0.08));
  box-shadow: var(--analytics-chart-panel-shadow, 0 6px 24px rgba(0, 0, 0, 0.28));
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}
.analytics-chart__panel.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.analytics-chart__panel:hover {
  box-shadow: var(--analytics-chart-panel-shadow-hover, 0 16px 44px rgba(0, 0, 0, 0.38));
}

.analytics-chart__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.analytics-chart__panel-title {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--standard-primary-site-text-color, #ffffff);
}

.analytics-chart__panel-badge {
  flex: none;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--analytics-chart-badge-text, #4ade80);
  background: var(--analytics-chart-badge-bg, rgba(74, 222, 128, 0.14));
  border: 1px solid var(--analytics-chart-badge-border, rgba(74, 222, 128, 0.3));
}

.analytics-chart__panel-desc {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
  margin: 0 0 16px;
}

.analytics-chart__canvas {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: auto;
  min-height: 60px;
}

.analytics-chart__svg {
  display: block;
  width: 100%;
  height: 190px;
  overflow: visible;
}
.analytics-chart__svg--donut, .analytics-chart__svg--gauge {
  height: auto;
  max-width: 220px;
  margin: 0 auto;
}
.analytics-chart__svg--spark {
  height: 56px;
}

.analytics-chart__gridline {
  stroke: var(--analytics-chart-grid-color, rgba(255, 255, 255, 0.09));
  stroke-width: 1;
  stroke-dasharray: 3 4;
}

.analytics-chart__tick {
  fill: var(--analytics-chart-tick-color, rgba(255, 255, 255, 0.45));
  font-size: 9.5px;
  font-family: inherit;
}

.analytics-chart__donut-track {
  stroke: var(--analytics-chart-track-color, rgba(255, 255, 255, 0.08));
}

/* ------------------------------------------------------------------ legend */
.analytics-chart__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.analytics-chart__legend--stacked {
  flex-direction: column;
  gap: 8px;
}

.analytics-chart__legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
}

.analytics-chart__legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex: none;
}

/* -------------------------------------------------------- horizontal bars */
.analytics-chart__hbars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.analytics-chart__hbar {
  display: grid;
  grid-template-columns: minmax(80px, 34%) 1fr auto;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
}

.analytics-chart__hbar-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--standard-primary-site-text-color, #ffffff);
}

.analytics-chart__hbar-track {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: var(--analytics-chart-track-color, rgba(255, 255, 255, 0.08));
  overflow: hidden;
}

.analytics-chart__hbar-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
}

.analytics-chart__hbar-value {
  font-variant-numeric: tabular-nums;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
  white-space: nowrap;
}

/* --------------------------------------------------------- stacked bar */
.analytics-chart__stack-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.analytics-chart__stack {
  display: flex;
  height: 30px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--analytics-chart-track-color, rgba(255, 255, 255, 0.08));
}

.analytics-chart__stack-seg {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  flex-grow: 0;
  flex-shrink: 1;
}
.analytics-chart__stack-seg em {
  font-style: normal;
  font-size: 10.5px;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.analytics-chart__stack-caption {
  margin: 0;
  text-align: center;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
}

/* --------------------------------------------------------- donut / gauge */
.analytics-chart__donut-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.analytics-chart__donut-figure {
  position: relative;
  width: 100%;
  max-width: 220px;
}

.analytics-chart__donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  pointer-events: none;
}
.analytics-chart__donut-center strong {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--standard-primary-site-text-color, #ffffff);
}
.analytics-chart__donut-center span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
}

.analytics-chart__gauge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.analytics-chart__gauge-value {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--standard-primary-site-text-color, #ffffff);
}

.analytics-chart__gauge-label {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
}

/* ------------------------------------------------------------ light theme */
.theme-light .analytics-chart,
.analytics-chart.theme-light {
  color: var(--standard-primary-site-text-color, #111827);
}

.theme-light .analytics-chart__panel,
.analytics-chart.theme-light .analytics-chart__panel {
  background: var(--analytics-chart-panel-bg, #ffffff);
  border-color: var(--analytics-chart-panel-border, rgba(0, 0, 0, 0.08));
  box-shadow: var(--analytics-chart-panel-shadow, 0 4px 18px rgba(0, 0, 0, 0.07));
}

.theme-light .analytics-chart__panel:hover,
.analytics-chart.theme-light .analytics-chart__panel:hover {
  box-shadow: var(--analytics-chart-panel-shadow-hover, 0 14px 38px rgba(0, 0, 0, 0.12));
}

/* --------------------------------------------------------------- responsive */
@media (min-width: 700px) {
  .analytics-chart {
    padding: 100px 24px;
  }
  .analytics-chart__grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .analytics-chart__grid--3,
  .analytics-chart__grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .analytics-chart {
    padding: 110px 24px;
  }
  .analytics-chart__panel {
    padding: 26px;
  }
  .analytics-chart__grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .analytics-chart__grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (prefers-reduced-motion: reduce) {
  .analytics-chart__panel {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


.metric-tiles {
  width: 100%;
  padding: 80px 20px;
  color: var(--standard-primary-site-text-color, #ffffff);
}
.metric-tiles--with-bg {
  background: var(--metric-tiles-bg, linear-gradient(180deg, #0c0c0c 0%, var(--site-body-bg, #1e1e1e) 100%));
}
.metric-tiles--muted {
  background: var(--metric-tiles-muted-bg, var(--site-body-bg, #1e1e1e));
}

.metric-tiles__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.metric-tiles__header {
  text-align: center;
  margin-bottom: 44px;
}

.metric-tiles__title {
  font-size: clamp(30px, 4.5vw, 44px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--standard-primary-site-text-color, #ffffff);
}

.metric-tiles__subtitle {
  font-size: clamp(14px, 2vw, 17px);
  line-height: 1.6;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
  margin: 0 auto;
  max-width: 680px;
}

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

.metric-tiles__tile {
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-radius: 16px;
  background: var(--metric-tiles-card-bg, #2a2a2a);
  border: 1px solid var(--metric-tiles-card-border, rgba(255, 255, 255, 0.08));
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.metric-tiles__tile.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.metric-tiles__face {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 26px 16px;
  border-radius: 12px;
  text-align: center;
  background: var(--metric-tiles-face-bg, linear-gradient(115deg, #f8fafc 0%, #dbeafe 45%, var(--metric-tiles-face-accent, #3b82f6) 100%));
  color: var(--metric-tiles-face-text, #0f172a);
  overflow: hidden;
  position: relative;
}

.metric-tiles__face::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 35%, rgba(255, 255, 255, 0.42) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: metric-tiles-sheen 5.5s ease-in-out infinite;
  pointer-events: none;
}

.metric-tiles__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 22px;
  line-height: 1;
}
.metric-tiles__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.metric-tiles__value {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 38px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.metric-tiles__label {
  margin: 0;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.metric-tiles__desc {
  margin: 14px 0 0;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
}

/* ------------------------------------------------------------ light theme */
.theme-light .metric-tiles,
.metric-tiles.theme-light {
  color: var(--standard-primary-site-text-color, #111827);
}

.theme-light .metric-tiles__tile,
.metric-tiles.theme-light .metric-tiles__tile {
  background: var(--metric-tiles-card-bg, #ffffff);
  border-color: var(--metric-tiles-card-border, rgba(0, 0, 0, 0.08));
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

/* --------------------------------------------------------------- responsive */
@media (min-width: 640px) {
  .metric-tiles {
    padding: 100px 24px;
  }
  .metric-tiles__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .metric-tiles__grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .metric-tiles__grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@keyframes metric-tiles-sheen {
  0%, 55% {
    transform: translateX(-120%);
  }
  85%, 100% {
    transform: translateX(120%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .metric-tiles__tile {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .metric-tiles__face::after {
    animation: none;
    opacity: 0;
  }
}

.code-snippet {
  width: 100%;
  padding: 64px 20px;
  color: var(--standard-primary-site-text-color, #ffffff);
}
.code-snippet--with-bg {
  background: var(--code-snippet-bg, linear-gradient(180deg, #0c0c0c 0%, var(--site-body-bg, #1e1e1e) 100%));
}
.code-snippet--muted {
  background: var(--code-snippet-muted-bg, var(--site-body-bg, #1e1e1e));
}
.code-snippet {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.code-snippet.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.code-snippet__inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.code-snippet__header {
  margin-bottom: 22px;
}

.code-snippet__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--standard-primary-site-text-color, #ffffff);
}

.code-snippet__subtitle {
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
}

/* ------------------------------------------------------------------ shell */
.code-snippet__shell {
  border-radius: 14px;
  overflow: hidden;
  background: var(--code-snippet-shell-bg, #16161d);
  border: 1px solid var(--code-snippet-shell-border, rgba(255, 255, 255, 0.1));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.code-snippet__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--code-snippet-bar-bg, rgba(255, 255, 255, 0.05));
  border-bottom: 1px solid var(--code-snippet-shell-border, rgba(255, 255, 255, 0.1));
}

.code-snippet__tabs {
  display: flex;
  flex: 1 1 auto;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.code-snippet__tabs::-webkit-scrollbar {
  display: none;
}

.code-snippet__tab {
  flex: none;
  appearance: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 7px;
  white-space: nowrap;
  background: transparent;
  color: var(--code-snippet-tab-text, rgba(255, 255, 255, 0.6));
  transition: background 0.2s ease, color 0.2s ease;
}
.code-snippet__tab:hover {
  color: var(--code-snippet-tab-active-text, #ffffff);
  background: var(--code-snippet-tab-hover-bg, rgba(255, 255, 255, 0.07));
}
.code-snippet__tab.is-active {
  color: var(--code-snippet-tab-active-text, #ffffff);
  background: var(--code-snippet-tab-active-bg, rgba(255, 255, 255, 0.13));
}
.code-snippet__tab:focus-visible {
  outline: 2px solid var(--main-theme-color, #42f4fd);
  outline-offset: 1px;
}

.code-snippet__copy {
  flex: none;
  appearance: none;
  cursor: pointer;
  font: inherit;
  font-size: 11.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 7px;
  background: var(--code-snippet-copy-bg, rgba(255, 255, 255, 0.08));
  border: 1px solid var(--code-snippet-shell-border, rgba(255, 255, 255, 0.12));
  color: var(--code-snippet-tab-active-text, #ffffff);
  transition: background 0.2s ease, color 0.2s ease;
}
.code-snippet__copy:hover {
  background: var(--code-snippet-copy-hover-bg, rgba(255, 255, 255, 0.16));
}
.code-snippet__copy:focus-visible {
  outline: 2px solid var(--main-theme-color, #42f4fd);
  outline-offset: 1px;
}
.code-snippet__copy svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.code-snippet__copy .code-snippet__copy-done {
  display: none;
}
.code-snippet__copy.is-copied {
  color: var(--code-snippet-copied-color, #4ade80);
}
.code-snippet__copy.is-copied .code-snippet__copy-idle {
  display: none;
}
.code-snippet__copy.is-copied .code-snippet__copy-done {
  display: inline;
}

/* ------------------------------------------------------------------- panes */
.code-snippet__pane[hidden] {
  display: none;
}

.code-snippet__pane pre {
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 16px 18px;
  max-height: 520px;
  overflow: auto;
  font-family: "SFMono-Regular", ui-monospace, Menlo, Consolas, "Liberation Mono", monospace;
  font-size: 12.5px;
  line-height: 1.7;
  tab-size: 2;
}

.code-snippet__gutter {
  flex: none;
  user-select: none;
  text-align: right;
  white-space: pre;
  color: var(--code-snippet-gutter-color, rgba(255, 255, 255, 0.25));
  border-right: 1px solid var(--code-snippet-shell-border, rgba(255, 255, 255, 0.08));
  padding-right: 12px;
}

.code-snippet__pane code {
  display: block;
  white-space: pre;
  color: var(--code-snippet-text, #e6e6ef);
  font-family: inherit;
}

.code-snippet__caption {
  margin: 14px 0 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
}

/* --------------------------------------------------------------- tokens */
.code-snippet__pane .tok-key {
  color: var(--code-snippet-tok-key, #c792ea);
}
.code-snippet__pane .tok-str {
  color: var(--code-snippet-tok-str, #a5e075);
}
.code-snippet__pane .tok-num {
  color: var(--code-snippet-tok-num, #f78c6c);
}
.code-snippet__pane .tok-comment {
  color: var(--code-snippet-tok-comment, #6b7789);
  font-style: italic;
}
.code-snippet__pane .tok-tag {
  color: var(--code-snippet-tok-tag, #7fd1f7);
}
.code-snippet__pane .tok-attr {
  color: var(--code-snippet-tok-attr, #ffcb6b);
}

/* ------------------------------------------------------------ light theme */
.theme-light .code-snippet,
.code-snippet.theme-light {
  color: var(--standard-primary-site-text-color, #111827);
}

.theme-light .code-snippet__shell,
.code-snippet.theme-light .code-snippet__shell {
  background: var(--code-snippet-shell-bg, #1b1b25);
  border-color: var(--code-snippet-shell-border, rgba(0, 0, 0, 0.14));
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
}

/* --------------------------------------------------------------- responsive */
@media (min-width: 768px) {
  .code-snippet {
    padding: 72px 24px;
  }
  .code-snippet__pane pre {
    font-size: 13px;
    padding: 20px 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .code-snippet {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


.steps-timeline {
  width: 100%;
  padding: 80px 20px;
  color: var(--standard-primary-site-text-color, #ffffff);
}
.steps-timeline--with-bg {
  background: var(--steps-timeline-bg, linear-gradient(180deg, #0c0c0c 0%, var(--site-body-bg, #1e1e1e) 100%));
}
.steps-timeline--muted {
  background: var(--steps-timeline-muted-bg, var(--site-body-bg, #1e1e1e));
}

.steps-timeline__inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.steps-timeline__header {
  text-align: center;
  margin-bottom: 48px;
}

.steps-timeline__title {
  font-size: clamp(30px, 4.5vw, 44px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--standard-primary-site-text-color, #ffffff);
}

.steps-timeline__subtitle {
  font-size: clamp(14px, 2vw, 17px);
  line-height: 1.6;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
  margin: 0 auto;
  max-width: 660px;
}

/* -------------------------------------------------------------------- rail */
.steps-timeline__list {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0 0 0 52px;
}

.steps-timeline__rail {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 19px;
  width: 2px;
  border-radius: 2px;
  background: var(--steps-timeline-rail-bg, rgba(255, 255, 255, 0.12));
  overflow: hidden;
}

.steps-timeline__rail-fill {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top center;
  background: var(--steps-timeline-rail-fill, var(--main-theme-color, #42f4fd));
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ------------------------------------------------------------------- steps */
.steps-timeline__step {
  position: relative;
  padding-bottom: 34px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.steps-timeline__step.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.steps-timeline__step:last-child {
  padding-bottom: 0;
}

.steps-timeline__marker {
  position: absolute;
  top: 0;
  left: -52px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  background: var(--steps-timeline-marker-bg, #2a2a2a);
  border: 2px solid var(--steps-timeline-marker-border, rgba(255, 255, 255, 0.14));
  color: var(--standard-primary-site-text-color, #ffffff);
  transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.steps-timeline__step.is-visible .steps-timeline__marker {
  border-color: var(--steps-timeline-marker-active-border, var(--main-theme-color, #42f4fd));
  box-shadow: 0 0 0 5px var(--steps-timeline-marker-glow, rgba(66, 244, 253, 0.14));
}

.steps-timeline__step-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 8px 0 8px;
  color: var(--standard-primary-site-text-color, #ffffff);
}

.steps-timeline__step-body {
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
}
.steps-timeline__step-body code {
  font-family: "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;
  font-size: 0.9em;
  padding: 2px 6px;
  border-radius: 5px;
  background: var(--steps-timeline-code-bg, rgba(255, 255, 255, 0.08));
  color: var(--standard-primary-site-text-color, #ffffff);
}
.steps-timeline__step-body a {
  color: var(--primary-text-color, #ffc846);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.steps-timeline__step-body ul,
.steps-timeline__step-body ol {
  margin: 10px 0 0;
  padding-left: 20px;
}
.steps-timeline__step-body li + li {
  margin-top: 6px;
}

.steps-timeline__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--steps-timeline-meta-text, #4ade80);
  background: var(--steps-timeline-meta-bg, rgba(74, 222, 128, 0.13));
}

/* ------------------------------------------------------------ light theme */
.theme-light .steps-timeline,
.steps-timeline.theme-light {
  color: var(--standard-primary-site-text-color, #111827);
}

.theme-light .steps-timeline__marker,
.steps-timeline.theme-light .steps-timeline__marker {
  background: var(--steps-timeline-marker-bg, #ffffff);
  border-color: var(--steps-timeline-marker-border, rgba(0, 0, 0, 0.12));
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.theme-light .steps-timeline__rail,
.steps-timeline.theme-light .steps-timeline__rail {
  background: var(--steps-timeline-rail-bg, rgba(0, 0, 0, 0.1));
}

.theme-light .steps-timeline__step-body code,
.steps-timeline.theme-light .steps-timeline__step-body code {
  background: var(--steps-timeline-code-bg, rgba(0, 0, 0, 0.06));
}

/* --------------------------------------------------------------- responsive */
@media (min-width: 768px) {
  .steps-timeline {
    padding: 100px 24px;
  }
  .steps-timeline__list {
    padding-left: 68px;
  }
  .steps-timeline__rail {
    left: 23px;
  }
  .steps-timeline__marker {
    left: -68px;
    width: 48px;
    height: 48px;
    font-size: 16px;
  }
  .steps-timeline__step {
    padding-bottom: 42px;
  }
  .steps-timeline__step-title {
    font-size: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .steps-timeline__step {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .steps-timeline__rail-fill {
    transform: scaleY(1);
    transition: none;
  }
}

.flow-diagram {
  width: 100%;
  padding: 80px 20px;
  color: var(--standard-primary-site-text-color, #ffffff);
}
.flow-diagram--with-bg {
  background: var(--flow-diagram-bg, linear-gradient(180deg, #0c0c0c 0%, var(--site-body-bg, #1e1e1e) 100%));
}
.flow-diagram--muted {
  background: var(--flow-diagram-muted-bg, var(--site-body-bg, #1e1e1e));
}

.flow-diagram__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.flow-diagram__header {
  text-align: center;
  margin-bottom: 48px;
}

.flow-diagram__title {
  font-size: clamp(30px, 4.5vw, 44px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--standard-primary-site-text-color, #ffffff);
}

.flow-diagram__subtitle {
  font-size: clamp(14px, 2vw, 17px);
  line-height: 1.6;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
  margin: 0 auto;
  max-width: 700px;
}

/* ------------------------------------------------------------------ canvas */
.flow-diagram__canvas {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 32px;
  align-items: center;
}

.flow-diagram__links {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}

.flow-diagram__link {
  fill: none;
  stroke: var(--flow-diagram-link-color, rgba(255, 255, 255, 0.16));
  stroke-width: 1.5;
}

.flow-diagram__pulse {
  fill: none;
  stroke: var(--flow-diagram-pulse-color, var(--main-theme-color, #42f4fd));
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 7 150;
  animation: flow-diagram-pulse 2.8s linear infinite;
}

/* ------------------------------------------------------------------ stages */
.flow-diagram__stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.flow-diagram__stage-label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  margin: 0;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
}

.flow-diagram__node {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 16px 18px;
  border-radius: 13px;
  text-align: center;
  background: var(--flow-diagram-node-bg, #2a2a2a);
  border: 1px solid var(--flow-diagram-node-border, rgba(255, 255, 255, 0.1));
  box-shadow: var(--flow-diagram-node-shadow, 0 6px 22px rgba(0, 0, 0, 0.3));
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  transition-delay: calc(var(--i, 0) * 70ms);
}
.flow-diagram__node.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.flow-diagram__node:hover {
  border-color: var(--flow-diagram-node-hover-border, var(--main-theme-color, #42f4fd));
  box-shadow: var(--flow-diagram-node-shadow-hover, 0 14px 36px rgba(0, 0, 0, 0.4));
}

.flow-diagram__node-icon {
  display: block;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 2px;
}

.flow-diagram__node-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--standard-primary-site-text-color, #ffffff);
}

.flow-diagram__node-desc {
  font-size: 11.5px;
  line-height: 1.5;
  margin: 0;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
}

.flow-diagram__node-tag {
  align-self: center;
  margin-top: 4px;
  font-size: 9.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 999px;
  color: var(--flow-diagram-tag-text, #4ade80);
  background: var(--flow-diagram-tag-bg, rgba(74, 222, 128, 0.13));
}

.flow-diagram__note {
  margin: 34px auto 0;
  max-width: 780px;
  text-align: center;
  font-size: 13px;
  line-height: 1.65;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
}

/* ------------------------------------------------------------ light theme */
.theme-light .flow-diagram,
.flow-diagram.theme-light {
  color: var(--standard-primary-site-text-color, #111827);
}

.theme-light .flow-diagram__node,
.flow-diagram.theme-light .flow-diagram__node {
  background: var(--flow-diagram-node-bg, #ffffff);
  border-color: var(--flow-diagram-node-border, rgba(0, 0, 0, 0.09));
  box-shadow: var(--flow-diagram-node-shadow, 0 4px 18px rgba(0, 0, 0, 0.07));
}

.theme-light .flow-diagram__link,
.flow-diagram.theme-light .flow-diagram__link {
  stroke: var(--flow-diagram-link-color, rgba(0, 0, 0, 0.16));
}

/* --------------------------------------------------------------- responsive */
@media (min-width: 900px) {
  .flow-diagram {
    padding: 100px 24px;
  }
  .flow-diagram__canvas {
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
    grid-template-columns: unset;
    gap: 0 56px;
    align-items: center;
  }
}
@keyframes flow-diagram-pulse {
  from {
    stroke-dashoffset: 157;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .flow-diagram__node {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .flow-diagram__pulse {
    animation: none;
    opacity: 0;
  }
}

.screenshot-showcase {
  width: 100%;
  padding: 80px 20px;
  color: var(--standard-primary-site-text-color, #ffffff);
  overflow: hidden;
}
.screenshot-showcase--with-bg {
  background: var(--screenshot-showcase-bg, linear-gradient(180deg, #0c0c0c 0%, var(--site-body-bg, #1e1e1e) 100%));
}
.screenshot-showcase--muted {
  background: var(--screenshot-showcase-muted-bg, var(--site-body-bg, #1e1e1e));
}

.screenshot-showcase__inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.screenshot-showcase__header {
  text-align: center;
  margin-bottom: 44px;
}

.screenshot-showcase__title {
  font-size: clamp(30px, 4.5vw, 44px);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--standard-primary-site-text-color, #ffffff);
}

.screenshot-showcase__subtitle {
  font-size: clamp(14px, 2vw, 17px);
  line-height: 1.6;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
  margin: 0 auto;
  max-width: 700px;
}

.screenshot-showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  perspective: 1400px;
}

/* ------------------------------------------------------------------ frames */
.screenshot-showcase__frame {
  --parallax-y: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  border-radius: 14px;
  overflow: hidden;
  background: var(--screenshot-showcase-frame-bg, #16161d);
  border: 1px solid var(--screenshot-showcase-frame-border, rgba(255, 255, 255, 0.12));
  box-shadow: var(--screenshot-showcase-frame-shadow, 0 24px 70px rgba(0, 0, 0, 0.45));
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  transition-delay: calc(var(--i, 0) * 110ms);
  transform-style: preserve-3d;
}
.screenshot-showcase__frame.is-visible {
  opacity: 1;
  transform: translate3d(0, var(--parallax-y), 0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}
.screenshot-showcase__frame:hover {
  box-shadow: var(--screenshot-showcase-frame-shadow-hover, 0 30px 90px rgba(0, 0, 0, 0.55));
}

.screenshot-showcase__chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  background: var(--screenshot-showcase-chrome-bg, rgba(255, 255, 255, 0.06));
  border-bottom: 1px solid var(--screenshot-showcase-frame-border, rgba(255, 255, 255, 0.1));
}

.screenshot-showcase__dots {
  display: flex;
  gap: 6px;
  flex: none;
}
.screenshot-showcase__dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--screenshot-showcase-dot-color, rgba(255, 255, 255, 0.22));
}

.screenshot-showcase__url {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 11px;
  font-family: "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: var(--screenshot-showcase-url-bg, rgba(0, 0, 0, 0.3));
  color: var(--screenshot-showcase-url-text, rgba(255, 255, 255, 0.6));
}

.screenshot-showcase__media {
  position: relative;
  display: block;
  background: var(--screenshot-showcase-media-bg, #0e0e14);
  aspect-ratio: 16/9;
}

.screenshot-showcase__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.screenshot-showcase__image--light {
  display: none;
}

.theme-light .screenshot-showcase__image--dark {
  display: none;
}

.theme-light .screenshot-showcase__image--light {
  display: block;
}

.screenshot-showcase__caption {
  padding: 15px 18px 18px;
}

.screenshot-showcase__caption-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--standard-primary-site-text-color, #ffffff);
}

.screenshot-showcase__caption-text {
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  color: var(--standard-secondary-site-text-color, #a2a2a2);
}

.screenshot-showcase__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 9px;
  border-radius: 999px;
  color: var(--screenshot-showcase-badge-text, #4ade80);
  background: var(--screenshot-showcase-badge-bg, rgba(74, 222, 128, 0.13));
}

/* ------------------------------------------------------------ light theme */
.theme-light .screenshot-showcase,
.screenshot-showcase.theme-light {
  color: var(--standard-primary-site-text-color, #111827);
}

.theme-light .screenshot-showcase__frame,
.screenshot-showcase.theme-light .screenshot-showcase__frame {
  background: var(--screenshot-showcase-frame-bg, #ffffff);
  border-color: var(--screenshot-showcase-frame-border, rgba(0, 0, 0, 0.1));
  box-shadow: var(--screenshot-showcase-frame-shadow, 0 18px 50px rgba(0, 0, 0, 0.13));
}

.theme-light .screenshot-showcase__chrome,
.screenshot-showcase.theme-light .screenshot-showcase__chrome {
  background: var(--screenshot-showcase-chrome-bg, rgba(0, 0, 0, 0.04));
  border-bottom-color: var(--screenshot-showcase-frame-border, rgba(0, 0, 0, 0.08));
}

.theme-light .screenshot-showcase__dots span,
.screenshot-showcase.theme-light .screenshot-showcase__dots span {
  background: var(--screenshot-showcase-dot-color, rgba(0, 0, 0, 0.16));
}

.theme-light .screenshot-showcase__url,
.screenshot-showcase.theme-light .screenshot-showcase__url {
  background: var(--screenshot-showcase-url-bg, rgba(0, 0, 0, 0.05));
  color: var(--screenshot-showcase-url-text, rgba(0, 0, 0, 0.55));
}

/* --------------------------------------------------------------- responsive */
@media (min-width: 768px) {
  .screenshot-showcase {
    padding: 100px 24px;
  }
  .screenshot-showcase__grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .screenshot-showcase__grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (prefers-reduced-motion: reduce) {
  .screenshot-showcase__frame {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .screenshot-showcase__frame.is-visible {
    transform: none;
  }
}


