/* ==========================================================================
   Reset
   ========================================================================== */

   *,
   *::before,
   *::after {
	   box-sizing: border-box;
	   margin: 0;
	   padding: 0;
   }
   
   html {
	   scroll-behavior: smooth;
	   -webkit-text-size-adjust: 100%;
   }
   
   body {
	   min-width: 320px;
	   font-family: "Geist", sans-serif;
	   font-weight: 400;
	   font-size: 16px;
	   line-height: 1.5;
	   color: #000000;
	   background-color: #ffffff;
	   -webkit-font-smoothing: antialiased;
	   -moz-osx-font-smoothing: grayscale;
   }
   
   img,
   svg {
	   display: block;
	   max-width: 100%;
	   height: auto;
   }
   
   a {
	   color: inherit;
	   text-decoration: none;
   }
   
   button {
	   font: inherit;
	   color: inherit;
	   background: none;
	   border: 0;
	   cursor: pointer;
   }
   
   ul,
   ol {
	   list-style: none;
   }
   
   h1,
   h2,
   h3,
   h4,
   h5,
   h6,
   p,
   blockquote {
	   margin: 0;
   }
   
   /* ==========================================================================
		 Shared: Buttons
		 ========================================================================== */
   
   .btn {
	   position: relative;
	   display: inline-flex;
	   align-items: center;
	   justify-content: center;
	   gap: 12px;
	   padding: 12px 20px;
	   transition: all 0.2s ease;
   }
   
   .btn:hover {
	   box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.3);
   }
   
   .btn__label {
	   color: #fff;
	   font-family: "neue-haas-grotesk-display", sans-serif;
	   font-size: 16px;
	   font-style: normal;
	   font-weight: 500;
	   line-height: 1.2;
   }
   
   .btn__icon {
	   width: 18px;
	   height: 18px;
	   flex-shrink: 0;
	   background-color: currentColor;
	   -webkit-mask: url("/wp-content/themes/maxhq/assets/img/icon-arrow-up-right.svg") center / contain no-repeat;
	   mask: url("/wp-content/themes/maxhq/assets/img/icon-arrow-up-right.svg") center / contain no-repeat;
   }
   
   .btn--dark {
	   background: #060606;
	   color: #ffffff;
   }
   
   .btn--light {
	   background: #ffffff;
	   color: #000000;
	   border-radius: 4px;
	   padding: 16px 31px;
	   min-height: 55px;
   }
   
   .btn--light .btn__label {
	   color: #000000;
   }
   
   .btn--outline {
	   background: transparent;
	   color: #ffffff;
	   border: 1px solid rgba(255, 255, 255, 0.85);
	   border-radius: 4px;
	   padding: 16px 31px;
	   height: auto;
	   min-height: 55px;
   }

   .btn--white-border {
	   background: #ffffff;
	   color: #060606;
	   border: 1px solid #dadada;
   }

   .btn--white-border .btn__label {
	   color: #060606;
   }

   .btn--white-border .btn__icon {
	   background-color: #060606;
   }
   
   /* ==========================================================================
		 Shared: Eyebrow
		 ========================================================================== */
   
   .eyebrow {
	   display: inline-flex;
	   align-items: center;
	   gap: 8px;
	   padding-block: 8px;
   }
   
   .eyebrow__counter {
	   display: inline-flex;
	   align-items: center;
	   gap: 4px;
   }
   
   .eyebrow__bracket {
	   width: 4px;
	   height: 16px;
	   object-fit: contain;
   }
   
   .eyebrow__number,
   .eyebrow__label {
	   font-family: "Geist", sans-serif;
	   font-size: 14px;
	   line-height: 1.57;
	   letter-spacing: 3.08px;
	   text-transform: uppercase;
	   color: #646362;
	   white-space: nowrap;
   }
   
   /* ==========================================================================
		 Header
		 ========================================================================== */
   
   .header {
	   width: 100%;
	   position: sticky;
	   top: 0;
	   z-index: 100;
	   background: #ffffff;
	   transform: translateY(0);
	   transition: transform 0.35s ease;
	   will-change: transform;
	   padding: 0 40px 6px;
   }
   
   .header--hidden {
	   transform: translateY(-100%);
   }
   
   .header__container {
	   display: grid;
	   grid-template-columns: auto minmax(0, 1fr);
	   align-items: center;
	   gap: 24px;
	   width: 100%;
	   max-width: 1440px;
	   margin-inline: auto;
	   padding: 14px 60px;
	   border: 1px dashed #dadada;
	   border-top: none;
	   position: relative;
   }
   .header__container::before,
   .header__container::after {
	   content: "";
	   position: absolute;
	   bottom: -5px;
	   left: -5px;
	   width: 10px;
	   height: 10px;
	   border: 1px solid #dadada;
	   background: #ffffff;
	   outline: 2px solid #fff;
	   z-index: 1;
   }
   .header__container::after {
	   right: -5px;
	   bottom: -5px;
	   left: auto;
   }
   
   .header__logo {
	   display: inline-flex;
	   align-items: center;
	   flex-shrink: 0;
   }
   
   .header__logo-img {
	   width: 103px;
	   height: 28px;
	   object-fit: contain;
   }

   .header__right {
	   display: flex;
	   align-items: center;
	   justify-content: flex-end;
	   gap: 24px;
	   min-width: 0;
   }

   .header__menu-panel {
	   display: flex;
	   align-items: center;
	   justify-content: flex-end;
	   gap: 24px;
	   min-width: 0;
   }

   .header__buttons {
	   display: flex;
	   align-items: center;
	   gap: 12px;
	   flex-shrink: 0;
   }
   
   .header__nav {
	   display: flex;
	   align-items: center;
	   justify-content: flex-end;
	   gap: 12px;
	   flex-shrink: 0;
   }
   
   .header__nav-item {
	   position: relative;
   }
   
   .header__nav-item--dropdown {
	   padding-bottom: 12px;
	   margin-bottom: -12px;
   }
   
   .header__nav-link {
	   display: inline-flex;
	   align-items: center;
	   gap: 4px;
	   padding: 8px 12px;
	   color: #1f1f1e;
	   font-family: "Geist", sans-serif;
	   font-size: 16px;
	   font-style: normal;
	   font-weight: 300;
	   line-height: 1.4;
	   border-radius: 8px;
	   transition:
		   background-color 0.2s ease,
		   color 0.2s ease;
   }
   
   .header__nav-link--dropdown {
	   padding-right: 10px;
	   cursor: pointer;
	   background: transparent;
	   border: 0;
   }
   
   .header__nav-item--dropdown:hover .header__nav-link--dropdown,
   .header__nav-item--dropdown:focus-within .header__nav-link--dropdown,
   .header__nav-item--dropdown.is-open .header__nav-link--dropdown {
	   background: #f5f5f5;
   }
   
   .header__nav-chevron {
	   width: 18px;
	   height: 18px;
	   margin-top: -2px;
	   background-color: #313133;
	   -webkit-mask: url("/wp-content/themes/maxhq/assets/img/icon-chevron.svg") center / contain no-repeat;
	   mask: url("/wp-content/themes/maxhq/assets/img/icon-chevron.svg") center / contain no-repeat;
	   transition: transform 0.25s ease;
   }
   
   .header__nav-item--dropdown:hover .header__nav-chevron,
   .header__nav-item--dropdown:focus-within .header__nav-chevron,
   .header__nav-item--dropdown.is-open .header__nav-chevron {
	   transform: rotate(180deg);
   }
   
   .header__submenu {
	   position: absolute;
	   top: calc(100% - 4px);
	   left: 50%;
	   z-index: 120;
	   display: flex;
	   flex-direction: column;
	   gap: 2px;
	   min-width: 200px;
	   padding: 8px;
	   margin: 0;
	   list-style: none;
	   background: #ffffff;
	   border: 1px solid #ececec;
	   box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
	   opacity: 0;
	   visibility: hidden;
	   pointer-events: none;
	   transform: translateX(-50%) translateY(10px);
	   transition:
		   opacity 0.28s ease,
		   transform 0.28s ease,
		   visibility 0.28s ease;
   }
   
   .header__nav-item--dropdown:hover .header__submenu,
   .header__nav-item--dropdown:focus-within .header__submenu,
   .header__nav-item--dropdown.is-open .header__submenu {
	   opacity: 1;
	   visibility: visible;
	   pointer-events: auto;
	   transform: translateX(-50%) translateY(0);
   }
   
   .header__submenu-item {
	   width: 100%;
   }
   
   .header__submenu-link {
	   display: flex;
	   align-items: center;
	   width: 100%;
	   padding: 10px 12px;
	   color: #1f1f1e;
	   font-family: "Geist", sans-serif;
	   font-size: 15px;
	   font-weight: 300;
	   line-height: 1.4;
	   transition:
		   background-color 0.2s ease,
		   color 0.2s ease;
   }
   
   .header__submenu-link:hover,
   .header__submenu-link:focus-visible {
	   background: #f5f5f5;
	   color: #000000;
	   outline: none;
   }
   
   .header__menu-toggle {
	   display: none;
	   width: 40px;
	   height: 40px;
	   align-items: center;
	   justify-content: center;
   }
   
   .header__menu-toggle-bar {
	   display: block;
	   width: 20px;
	   height: 2px;
	   background: #000000;
	   box-shadow:
		   0 -6px 0 #000000,
		   0 6px 0 #000000;
   }
   
   /* ==========================================================================
		 Hero
		 ========================================================================== */
   
   .hero {
	   width: 100%;
	   background: #ffffff;
	   padding: 0 40px;
   }
   
   .hero__container {
	   position: relative;
	   display: flex;
	   flex-direction: column;
	   align-items: center;
	   width: 100%;
	   max-width: 1440px;
	   margin-inline: auto;
	   border-left: 1px dashed #dadada;
	   border-right: 1px dashed #dadada;
	   border-bottom: 1px dashed #dadada;
   }
   
   .hero__container::before,
   .hero__container::after {
	   content: "";
	   position: absolute;
	   bottom: -5px;
	   left: -5px;
	   z-index: 5;
	   width: 10px;
	   height: 10px;
	   border: 1px solid #dadada;
	   background: #ffffff;
	   outline: 2px solid #ffffff;
   }
   
   .hero__container::after {
	   right: -5px;
	   left: auto;
   }
   
   .hero__inner-container {
	   position: relative;
	   display: flex;
	   flex-direction: column;
	   align-items: center;
	   width: 100%;
	   min-height: 860px;
	   overflow: hidden;
	   padding: 80px 60px 0;
   }
   .hero__content {
	   position: relative;
	   z-index: 3;
	   display: flex;
	   flex-direction: column;
	   align-items: center;
	   gap: 24px;
	   width: 100%;
	   max-width: 900px;
	   text-align: center;
   }
   
   .hero__trust {
	   display: inline-flex;
	   align-items: center;
   }
   
   .hero__avatars {
	   display: flex;
	   align-items: center;
   }
   
   .hero__avatar {
	   width: 24px;
	   height: 24px;
	   border-radius: 24px;
	   overflow: hidden;
	   flex-shrink: 0;
   }
   
   .hero__avatar:nth-child(2) {
	   margin-left: -3px;
   }
   
   .hero__avatar img {
	   width: 100%;
	   height: 100%;
	   object-fit: cover;
   }
   
   .hero__trust-badge {
	   display: inline-flex;
	   align-items: center;
	   padding: 5px 12px 4px;
	   border-radius: 15px;
	   background: #000000;
	   color: #ffffff;
	   font-family: "Geist", sans-serif;
	   font-size: 11px;
	   line-height: 1.4;
	   white-space: nowrap;
   }
   
   .hero__title {
	   font-family: "neue-haas-grotesk-display", sans-serif;
	   font-weight: 500;
	   font-size: 48px;
	   line-height: 1.2;
	   color: #000000;
   }
   
   .hero__subtitle {
	   max-width: 544px;
	   font-family: "Geist", sans-serif;
	   font-weight: 300;
	   font-size: 16px;
	   line-height: 1.5;
	   color: rgba(0, 0, 0, 0.6);
   }
   
   .hero__stage {
	   --orbit-lg-size: 1180px;
	   --orbit-md-size: 920px;
	   --orbit-md-inset: 130px;
	   --orbit-md-drop: 50px;
	   position: absolute;
	   left: 50%;
	   bottom: 30px;
	   z-index: 1;
	   width: var(--orbit-lg-size);
	   height: var(--orbit-lg-size);
	   pointer-events: none;
	   transform: translateX(-50%);
   }
   
   .hero__orbits,
   .hero__satellites {
	   position: absolute;
	   inset: 0;
   }
   
   .hero__orbit-path {
	   position: absolute;
	   left: 50%;
	   border: 1.5px dotted rgb(165 177 190 / 26%);
	   border-radius: 50%;
	   transform: translateX(-50%);
   }
   
   .hero__orbit-path--lg {
	   bottom: 0;
	   width: var(--orbit-lg-size);
	   height: var(--orbit-lg-size);
   }
   
   .hero__orbit-path--md {
	   bottom: calc(var(--orbit-md-inset) - var(--orbit-md-drop));
	   width: var(--orbit-md-size);
	   height: var(--orbit-md-size);
   }
   
   .hero__spinner {
	   position: absolute;
	   left: 50%;
	   will-change: transform;
   }
   
   .hero__spinner--lg {
	   bottom: 0;
	   width: var(--orbit-lg-size);
	   height: var(--orbit-lg-size);
	   margin-left: calc(var(--orbit-lg-size) / -2);
   }
   
   .hero__spinner--md {
	   bottom: calc(var(--orbit-md-inset) - var(--orbit-md-drop));
	   width: var(--orbit-md-size);
	   height: var(--orbit-md-size);
	   margin-left: calc(var(--orbit-md-size) / -2);
   }
   
   .hero__icon-anchor {
	   position: absolute;
	   top: 0;
	   left: 50%;
	   transform: translate(-50%, -50%);
   }
   
   .hero__icon {
	   position: relative;
	   display: flex;
	   align-items: center;
	   justify-content: center;
	   width: 48px;
	   height: 48px;
	   border: 1px solid #ececec;
	   border-radius: 50%;
	   background: #edeae3;
	   box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
	   will-change: transform;
   }
   
   .hero__icon img {
	   display: block;
	   width: 24px;
	   height: 24px;
	   object-fit: contain;
   }
   
   .hero__icon.is-active {
	   z-index: 5;
   }
   
   .hero__tooltip {
	   position: absolute;
	   bottom: calc(100% + 12px);
	   left: 50%;
	   z-index: 2;
	   width: 248px;
	   opacity: 0;
	   visibility: hidden;
	   pointer-events: none;
	   transform: translateX(-50%) translateY(8px) scale(0.92);
	   transform-origin: bottom center;
	   transition:
		   opacity 0.28s ease,
		   transform 0.28s ease,
		   visibility 0.28s ease;
   }
   
   .hero__icon.is-active .hero__tooltip {
	   opacity: 1;
	   visibility: visible;
	   transform: translateX(-50%) translateY(0) scale(1);
   }
   
   /* ── Citation cards (hero tooltips) ─────────────────────────────────────── */
   
   .cite-card {
	   padding: 14px 14px 12px;
	   border: 1px solid #ececec;
	   border-radius: 14px;
	   background: #ffffff;
	   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	   text-align: left;
   }
   
   .cite-card__header {
	   display: flex;
	   align-items: center;
	   gap: 8px;
	   margin-bottom: 10px;
   }
   
   .cite-card__dial {
	   display: block;
	   flex-shrink: 0;
	   width: 20px;
	   height: 20px;
	   object-fit: contain;
   }
   
   .cite-card__brand {
	   font-family: "Geist", sans-serif;
	   font-size: 13px;
	   font-weight: 600;
	   line-height: 1.2;
	   color: #111111;
   }
   
   .cite-card__question {
	   margin: 0 0 6px;
	   font-family: "Geist", sans-serif;
	   font-size: 11px;
	   font-weight: 400;
	   line-height: 1.45;
	   color: #888888;
   }
   
   .cite-card__answer {
	   margin: 0;
	   font-family: "Geist", sans-serif;
	   font-size: 12px;
	   font-weight: 400;
	   line-height: 1.45;
	   color: #111111;
   }
   
   .cite-card__answer strong {
	   font-weight: 600;
   }
   
   .cite-card__highlight {
	   padding: 1px 3px;
	   border-radius: 3px;
	   background: #e8f0fe;
	   color: #1a73e8;
	   font-weight: 400;
   }
   
   .cite-card__divider {
	   margin: 10px 0 8px;
	   border: none;
	   border-top: 1px solid #eeeeee;
   }
   
   .cite-card__sources-label {
	   display: block;
	   margin-bottom: 6px;
	   font-family: "Geist", sans-serif;
	   font-size: 9px;
	   font-weight: 500;
	   letter-spacing: 0.06em;
	   line-height: 1;
	   color: #aaaaaa;
   }
   
   .cite-card__tags {
	   display: flex;
	   flex-wrap: wrap;
	   gap: 5px;
   }
   
   .cite-card__tag {
	   display: inline-flex;
	   align-items: center;
	   gap: 4px;
	   padding: 4px 8px;
	   border-radius: 999px;
	   background: #f3f3f3;
	   font-family: "Geist", sans-serif;
	   font-size: 10px;
	   font-weight: 400;
	   line-height: 1.2;
	   color: #555555;
	   white-space: nowrap;
   }
   
   .cite-card__tag-num {
	   font-size: 9px;
	   color: #999999;
   }
   
   .cite-card__tag-icon {
	   display: inline-flex;
	   align-items: center;
	   justify-content: center;
	   width: 14px;
	   height: 14px;
	   border-radius: 50%;
	   background: #d8d8d8;
	   font-size: 8px;
	   font-weight: 600;
	   color: #666666;
   }
   
   /* ChatGPT */
   .hero__tooltip--chatgpt {
	   width: 280px;
   }
   
   .cite-card--chatgpt {
	   padding: 20px;
	   border: 1px solid #e5e7eb;
	   border-radius: 16px;
	   box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
   }
   
   .cite-card--chatgpt .cite-card__header {
	   gap: 10px;
	   margin-bottom: 12px;
   }
   
   .cite-card--chatgpt .cite-card__brand {
	   font-size: 14px;
	   font-weight: 700;
	   color: #000000;
   }
   
   .cite-card--chatgpt .cite-card__question {
	   margin-bottom: 8px;
	   font-size: 12px;
	   font-weight: 500;
	   line-height: 1.45;
	   color: #64748b;
   }
   
   .cite-card--chatgpt .cite-card__answer {
	   font-size: 12px;
	   line-height: 1.5;
	   color: #000000;
   }
   
   .cite-card--chatgpt .cite-card__divider {
	   margin: 12px 0 10px;
	   border-top-color: #e2e8f0;
   }
   
   .cite-card--chatgpt .cite-card__sources-label {
	   margin-bottom: 8px;
	   font-size: 9px;
	   font-weight: 700;
	   letter-spacing: 0.08em;
	   color: #9ca3af;
   }
   
   .cite-card--chatgpt .cite-card__tags {
	   display: grid;
	   grid-template-columns: repeat(2, max-content);
	   gap: 6px;
   }
   
   .cite-card--chatgpt .cite-card__tag {
	   padding: 5px 10px 5px 5px;
	   border: 1px solid #e5e7eb;
	   border-radius: 999px;
	   background: #ffffff;
	   font-size: 10px;
	   color: #6b7280;
	   gap: 6px;
   }
   
   .cite-card--chatgpt .cite-card__tag-num {
	   display: inline-flex;
	   align-items: center;
	   justify-content: center;
	   flex-shrink: 0;
	   width: 16px;
	   height: 16px;
	   border-radius: 50%;
	   background: #f3f4f6;
	   font-size: 9px;
	   font-weight: 500;
	   color: #9ca3af;
   }
   
   .cite-card--chatgpt .cite-card__tag--brand {
	   border-color: #000000;
	   background: #000000;
	   color: #ffffff;
   }
   
   .cite-card--chatgpt .cite-card__tag--brand .cite-card__tag-num {
	   background: #374151;
	   color: #ffffff;
   }
   
   .cite-card--chatgpt .cite-card__tag--solo {
	   grid-column: 1 / -1;
	   justify-self: start;
   }
   
   /* Gemini */
   .hero__tooltip--gemini {
	   width: 280px;
   }
   
   .cite-card--gemini {
	   padding: 20px;
	   border: 1px solid #e8eaed;
	   border-radius: 24px;
	   background: #f8f9fa;
	   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
   }
   
   .cite-card--gemini .cite-card__header {
	   gap: 10px;
	   margin-bottom: 12px;
   }
   
   .cite-card--gemini .cite-card__brand {
	   font-size: 14px;
	   font-weight: 700;
	   color: #1f1f1f;
   }
   
   .cite-card--gemini .cite-card__question {
	   margin-bottom: 8px;
	   font-size: 12px;
	   font-weight: 400;
	   line-height: 1.45;
	   color: #5f6368;
   }
   
   .cite-card--gemini .cite-card__answer {
	   font-size: 12px;
	   font-weight: 400;
	   line-height: 1.5;
	   color: #1f1f1f;
   }
   
   .cite-card--gemini .cite-card__divider {
	   margin: 12px 0 10px;
	   border-top-color: #dadce0;
   }
   
   .cite-card--gemini .cite-card__sources-label {
	   margin-bottom: 8px;
	   font-size: 9px;
	   font-weight: 700;
	   letter-spacing: 0.08em;
	   color: #8ab4f8;
   }
   
   .cite-card--gemini .cite-card__tags {
	   display: flex;
	   flex-wrap: wrap;
	   gap: 6px;
   }
   
   .cite-card--gemini .cite-card__tag {
	   padding: 5px 10px 5px 5px;
	   border: 1px solid #e8eaed;
	   border-radius: 999px;
	   background: #ffffff;
	   font-size: 10px;
	   color: #5f6368;
	   gap: 6px;
   }
   
   .cite-card--gemini .cite-card__tag-num {
	   display: inline-flex;
	   align-items: center;
	   justify-content: center;
	   flex-shrink: 0;
	   width: 16px;
	   height: 16px;
	   border-radius: 50%;
	   background: #e8f0fe;
	   font-size: 9px;
	   font-weight: 600;
	   color: #1a73e8;
   }
   
   .cite-card--gemini .cite-card__tag--brand {
	   border-color: #1a73e8;
	   background: #1a73e8;
	   box-shadow: 0 2px 8px rgba(26, 115, 232, 0.35);
	   color: #ffffff;
   }
   
   .cite-card--gemini .cite-card__tag--brand .cite-card__tag-num {
	   background: rgba(255, 255, 255, 0.28);
	   color: #ffffff;
   }
   
   /* Perplexity */
   .hero__tooltip--perplexity {
	   width: 280px;
   }
   
   .cite-card--perplexity {
	   padding: 20px;
	   border: 1px solid #e8e2d9;
	   border-radius: 24px;
	   background: #fbf9f7;
	   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
   }
   
   .cite-card--perplexity .cite-card__header {
	   gap: 10px;
	   margin-bottom: 12px;
   }
   
   .cite-card--perplexity .cite-card__brand {
	   font-size: 14px;
	   font-weight: 700;
	   text-transform: lowercase;
	   color: #1a1a1a;
   }
   
   .cite-card--perplexity .cite-card__question {
	   margin-bottom: 8px;
	   font-size: 12px;
	   font-weight: 400;
	   line-height: 1.45;
	   color: #808080;
   }
   
   .cite-card--perplexity .cite-card__answer {
	   font-size: 12px;
	   font-weight: 400;
	   line-height: 1.5;
	   color: #1a1a1a;
   }
   
   .cite-card--perplexity .cite-card__divider {
	   margin: 12px 0 10px;
	   border-top-color: #e8e2d9;
   }
   
   .cite-card--perplexity .cite-card__sources-label {
	   margin-bottom: 8px;
	   font-size: 9px;
	   font-weight: 700;
	   letter-spacing: 0.08em;
	   color: #b5a494;
   }
   
   .cite-card--perplexity .cite-card__tags {
	   display: flex;
	   flex-direction: column;
	   align-items: flex-start;
	   gap: 6px;
   }
   
   .cite-card--perplexity .cite-card__tag {
	   display: inline-flex;
	   width: fit-content;
	   max-width: 100%;
	   justify-content: flex-start;
	   padding: 6px 10px 6px 6px;
	   border: none;
	   border-radius: 999px;
	   background: #efece8;
	   font-size: 10px;
	   color: #606060;
	   gap: 8px;
   }
   
   .cite-card--perplexity .cite-card__tag-num {
	   display: inline-flex;
	   align-items: center;
	   justify-content: center;
	   flex-shrink: 0;
	   width: 16px;
	   height: 16px;
	   border-radius: 50%;
	   background: #dcd8d2;
	   font-size: 9px;
	   font-weight: 600;
	   color: #606060;
   }
   
   .cite-card--perplexity .cite-card__tag--brand {
	   background: #000000;
	   color: #ffffff;
   }
   
   .cite-card--perplexity .cite-card__tag--brand .cite-card__tag-num {
	   background: #333333;
	   color: #ffffff;
   }
   
   /* Copilot */
   .hero__tooltip--copilot {
	   width: 280px;
   }
   
   .cite-card--copilot {
	   padding: 20px;
	   border: 1px solid #ebe4dc;
	   border-radius: 24px;
	   background: #faf7f5;
	   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
   }
   
   .cite-card--copilot .cite-card__header {
	   gap: 10px;
	   margin-bottom: 12px;
   }
   
   .cite-card--copilot .cite-card__brand {
	   font-size: 14px;
	   font-weight: 700;
	   color: #1a1a1a;
   }
   
   .cite-card--copilot .cite-card__question {
	   margin-bottom: 8px;
	   font-size: 12px;
	   font-weight: 400;
	   line-height: 1.45;
	   color: #8e8e8e;
   }
   
   .cite-card--copilot .cite-card__answer {
	   font-size: 12px;
	   font-weight: 400;
	   line-height: 1.5;
	   color: #1a1a1a;
   }
   
   .cite-card--copilot .cite-card__divider {
	   margin: 12px 0 10px;
	   border-top-color: #ebe4dc;
   }
   
   .cite-card--copilot .cite-card__sources-label {
	   margin-bottom: 8px;
	   font-size: 9px;
	   font-weight: 700;
	   letter-spacing: 0.08em;
	   color: #b5b5b5;
   }
   
   .cite-card--copilot .cite-card__tags {
	   display: grid;
	   grid-template-columns: repeat(2, max-content);
	   gap: 6px;
   }
   
   .cite-card--copilot .cite-card__tag {
	   padding: 5px 10px 5px 5px;
	   border: 1px solid #e5e7eb;
	   border-radius: 999px;
	   background: #ffffff;
	   font-size: 10px;
	   color: #1a1a1a;
	   gap: 6px;
   }
   
   .cite-card--copilot .cite-card__tag-num {
	   display: inline-flex;
	   align-items: center;
	   justify-content: center;
	   flex-shrink: 0;
	   width: 16px;
	   height: 16px;
	   border-radius: 50%;
	   background: #f3f4f6;
	   font-size: 9px;
	   font-weight: 500;
	   color: #9ca3af;
   }
   
   .cite-card--copilot .cite-card__tag--brand {
	   border-color: #000000;
	   background: #000000;
	   color: #ffffff;
   }
   
   .cite-card--copilot .cite-card__tag--brand .cite-card__tag-num {
	   background: #374151;
	   color: #ffffff;
   }
   
   .cite-card--copilot .cite-card__tag--solo {
	   grid-column: 1 / -1;
	   justify-self: start;
   }
   
   /* Claude */
   .hero__tooltip--claude {
	   width: 280px;
   }
   
   .cite-card--claude {
	   padding: 20px;
	   border: 1px solid #e8ddd0;
	   border-radius: 24px;
	   background: #f9f4eb;
	   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
   }
   
   .cite-card--claude .cite-card__header {
	   gap: 10px;
	   margin-bottom: 12px;
   }
   
   .cite-card--claude .cite-card__brand {
	   font-family: "Georgia", "Times New Roman", serif;
	   font-size: 14px;
	   font-weight: 600;
	   line-height: 1.2;
	   color: #d97757;
   }
   
   .cite-card--claude .cite-card__question {
	   margin-bottom: 8px;
	   font-family: "Georgia", "Times New Roman", serif;
	   font-size: 15px;
	   font-weight: 700;
	   line-height: 1.35;
	   color: #8b6347;
   }
   
   .cite-card--claude .cite-card__answer {
	   font-family: "Geist", sans-serif;
	   font-size: 12px;
	   font-weight: 400;
	   line-height: 1.5;
	   color: #333333;
   }
   
   .cite-card--claude .cite-card__divider {
	   margin: 12px 0 10px;
	   border-top-color: #e0d5c8;
   }
   
   .cite-card--claude .cite-card__sources-label {
	   margin-bottom: 8px;
	   font-family: "Geist", sans-serif;
	   font-size: 9px;
	   font-weight: 700;
	   letter-spacing: 0.08em;
	   color: #c4b5a5;
   }
   
   .cite-card--claude .cite-card__tags {
	   display: flex;
	   flex-direction: column;
	   align-items: flex-start;
	   gap: 6px;
   }
   
   .cite-card--claude .cite-card__tag {
	   display: inline-flex;
	   width: fit-content;
	   max-width: 100%;
	   justify-content: flex-start;
	   padding: 6px 10px 6px 6px;
	   border: none;
	   border-radius: 999px;
	   background: #efe8dc;
	   font-family: "Geist", sans-serif;
	   font-size: 10px;
	   font-weight: 400;
	   color: #6f4e37;
	   gap: 8px;
   }
   
   .cite-card--claude .cite-card__tag-num {
	   display: inline-flex;
	   align-items: center;
	   justify-content: center;
	   flex-shrink: 0;
	   width: 16px;
	   height: 16px;
	   border-radius: 50%;
	   background: #ddd5c8;
	   font-size: 9px;
	   font-weight: 600;
	   color: #6f4e37;
   }
   
   .cite-card--claude .cite-card__tag--brand {
	   background: #d97757;
	   color: #ffffff;
   }
   
   .cite-card--claude .cite-card__tag--brand .cite-card__tag-num {
	   background: rgba(255, 255, 255, 0.28);
	   color: #ffffff;
   }
   
   /* DeepSeek */
   .hero__tooltip--deepseek {
	   width: 280px;
   }
   
   .cite-card--deepseek {
	   padding: 20px;
	   border: 1px solid #d8e4f5;
	   border-radius: 14px;
	   background: #f8faff;
	   box-shadow: 0 4px 20px rgba(77, 107, 254, 0.08);
   }
   
   .cite-card--deepseek .cite-card__header {
	   gap: 10px;
	   margin-bottom: 12px;
   }
   
   .cite-card--deepseek .cite-card__brand {
	   font-family: "Geist", sans-serif;
	   font-size: 14px;
	   font-weight: 700;
	   line-height: 1.2;
	   color: #4d6bfe;
   }
   
   .cite-card--deepseek .cite-card__question {
	   margin-bottom: 8px;
	   font-family: "SF Mono", "Menlo", "Consolas", monospace;
	   font-size: 11px;
	   font-weight: 500;
	   line-height: 1.45;
	   color: #8e9aaf;
   }
   
   .cite-card--deepseek .cite-card__answer {
	   font-family: "Geist", sans-serif;
	   font-size: 12px;
	   font-weight: 400;
	   line-height: 1.5;
	   color: #333333;
   }
   
   .cite-card--deepseek .cite-card__divider {
	   margin: 12px 0 10px;
	   border-top-color: #e4eaf5;
   }
   
   .cite-card--deepseek .cite-card__sources-label {
	   margin-bottom: 8px;
	   font-family: "Geist", sans-serif;
	   font-size: 9px;
	   font-weight: 700;
	   letter-spacing: 0.08em;
	   color: #8e9aaf;
   }
   
   .cite-card--deepseek .cite-card__tags {
	   display: flex;
	   flex-wrap: wrap;
	   gap: 6px;
   }
   
   .cite-card--deepseek .cite-card__tag {
	   padding: 5px 8px;
	   border: 1px solid #d0dcf5;
	   border-radius: 4px;
	   background: #eef3ff;
	   font-family: "SF Mono", "Menlo", "Consolas", monospace;
	   font-size: 9px;
	   font-weight: 400;
	   line-height: 1.2;
	   color: #8e9aaf;
   }
   
   .cite-card--deepseek .cite-card__tag--brand strong {
	   font-weight: 700;
	   color: #4d6bfe;
   }
   
   /* AI Overview */
   .hero__tooltip--overview {
	   width: 280px;
   }
   
   .cite-card--overview {
	   padding: 20px;
	   border: 1px solid #e8eaed;
	   border-radius: 16px;
	   background: #ffffff;
	   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
   }
   
   .cite-card--overview .cite-card__header {
	   gap: 10px;
	   margin-bottom: 12px;
   }
   
   .cite-card--overview .cite-card__brand {
	   font-size: 14px;
	   font-weight: 700;
	   color: #202124;
   }
   
   .cite-card--overview .cite-card__question {
	   margin-bottom: 8px;
	   font-size: 12px;
	   font-weight: 500;
	   line-height: 1.45;
	   color: #5f6368;
   }
   
   .cite-card--overview .cite-card__answer {
	   font-size: 12px;
	   font-weight: 400;
	   line-height: 1.5;
	   color: #3c4043;
   }
   
   .cite-card--overview .cite-card__highlight {
	   padding: 1px 4px;
	   border-radius: 4px;
	   background: #e8f0fe;
	   color: #1a73e8;
	   font-weight: 500;
   }
   
   .cite-card--overview .cite-card__divider {
	   margin: 12px 0 10px;
	   border-top-color: #ededed;
   }
   
   .cite-card--overview .cite-card__sources-label {
	   margin-bottom: 8px;
	   font-size: 9px;
	   font-weight: 700;
	   letter-spacing: 0.08em;
	   color: #9aa0a6;
   }
   
   .cite-card--overview .cite-card__tags {
	   display: flex;
	   flex-wrap: wrap;
	   gap: 8px;
   }
   
   .cite-card--overview .cite-card__tag {
	   padding: 5px 10px 5px 5px;
	   border: none;
	   border-radius: 999px;
	   font-size: 10px;
	   gap: 6px;
   }
   
   .cite-card--overview .cite-card__tag--wiki {
	   background: #f1f3f4;
	   color: #3c4043;
   }
   
   .cite-card--overview .cite-card__tag--wiki .cite-card__tag-icon {
	   width: 16px;
	   height: 16px;
	   background: #9aa0a6;
	   font-size: 9px;
	   font-weight: 600;
	   color: #ffffff;
	   text-transform: lowercase;
   }
   
   .cite-card--overview .cite-card__tag--brand {
	   background: #e8f0fe;
	   color: #1a73e8;
	   font-weight: 700;
   }
   
   .cite-card--overview .cite-card__tag--brand .cite-card__tag-icon {
	   width: 16px;
	   height: 16px;
	   background: #1a73e8;
	   font-size: 9px;
	   font-weight: 700;
	   color: #ffffff;
   }
   
   .hero__cite-zone {
	   position: absolute;
	   left: 50%;
	   bottom: 0;
	   z-index: 2;
	   width: 450px;
	   height: 320px;
	   transform: translate(-50%, 10%);
	   pointer-events: none;
   }
   
   .hero__globe {
	   position: absolute;
	   left: 50%;
	   bottom: 0;
	   z-index: 0;
	   width: 680px;
	   max-width: none;
	   height: auto;
	   opacity: 0.95;
	   transform: translate(-50%, 48%);
	   pointer-events: none;
	   user-select: none;
   }
   
   .hero__globe-canvas {
	   position: absolute;
	   left: 50%;
	   bottom: 0;
	   z-index: 0;
	   width: 680px;
	   height: 680px;
	   max-width: none;
	   transform: translate(-50%, 48%);
	   cursor: grab;
   }
   
   .hero__globe-canvas:active {
	   cursor: grabbing;
   }
   
   .hero__globe-canvas canvas {
	   display: block;
	   width: 100% !important;
	   height: 100% !important;
   }
   
   @media (prefers-reduced-motion: reduce) {
	   .hero__spinner,
	   .hero__icon {
		   will-change: auto;
	   }
   
	   .accordion_panel,
	   .accordion_text,
	   .accordion_heading::before,
	   .accordion_heading::after {
		   transition: none;
	   }
   }
   
   /* ==========================================================================
		 Trusted logos
		 ========================================================================== */
   
   .trusted {
	   position: relative;
	   width: 100%;
	   padding: 0 40px;
   }
   
   .trusted__container {
	   position: relative;
	   display: flex;
	   flex-direction: column;
	   align-items: center;
	   gap: 32px;
	   width: 100%;
	   max-width: 1440px;
	   margin-inline: auto;
	   padding: 32px 64px 32px;
	   border-left: 1px dashed #dadada;
	   border-right: 1px dashed #dadada;
	   border-bottom: 1px dashed #dadada;
   }
   
   .trusted__container::before,
   .trusted__container::after {
	   content: "";
	   position: absolute;
	   bottom: -5px;
	   left: -5px;
	   z-index: 5;
	   width: 10px;
	   height: 10px;
	   border: 1px solid #dadada;
	   background: #ffffff;
	   outline: 2px solid #ffffff;
   }
   
   .trusted__container::after {
	   right: -5px;
	   left: auto;
   }
   
   .trusted__label {
	   font-family: "Geist", sans-serif;
	   font-size: 16px;
	   line-height: 1.5;
	   color: #060606;
	   opacity: 0.55;
   }
   
   .trusted__logos {
	   width: 100%;
	   max-width: 100%;
	   min-width: 0;
	   overflow: hidden;
   }

   .trusted__logos-swiper {
	   width: 100%;
	   overflow: visible;
   }

   .trusted__logos-swiper .swiper-wrapper {
	   align-items: center;
	   transition-timing-function: linear !important;
   }

   .trusted__logos-swiper .swiper-slide {
	   display: flex;
	   align-items: center;
	   justify-content: center;
	   width: auto;
	   flex-shrink: 0;
   }
   
   .trusted__logo {
	   display: block;
	   width: auto;
	   height: auto;
	   max-height: 38px;
	   object-fit: contain;
	   object-position: center;
	   opacity: 1;
   }
   
   /*.trusted__logo:not(.trusted__logo--veltrix):not(.trusted__logo--webgear):not(.trusted__logo--digitech) {*/
	  /* aspect-ratio: 181.005 / 32.91;*/
   /*}*/
   
   /*.trusted__logo--webgear {*/
	  /* aspect-ratio: 165 / 30;*/
	  /* max-height: 30px;*/
   /*}*/
   
   /*.trusted__logo--digitech {*/
	  /* aspect-ratio: 174.185 / 31.67;*/
   /*}*/
   
   /*.trusted__logo--veltrix {*/
	  /* max-height: 23px;*/
	  /* aspect-ratio: 116 / 23;*/
   /*}*/
   
   /* ==========================================================================
		 Problem
		 ========================================================================== */
   
   .problem {
	   width: 100%;
	   padding: 0 40px;
   }
   
   .problem__container {
	   position: relative;
	   display: flex;
	   flex-direction: column;
	   align-items: center;
	   gap: 0;
	   width: 100%;
	   max-width: 1440px;
	   margin-inline: auto;
	   padding: 60px 64px 56px;
	   border-left: 1px dashed #dadada;
	   border-right: 1px dashed #dadada;
   }
   
   .problem .eyebrow {
	   padding-block: 0;
	   margin-bottom: 24px;
   }
   
   .problem__title {
	   max-width: 736px;
	   margin-bottom: 36px;
	   font-family: "neue-haas-grotesk-display", sans-serif;
	   font-size: 48px;
	   font-weight: 500;
	   line-height: 1.17;
	   text-align: center;
	   color: #000000;
   }
   
   .problem__copy {
	   max-width: 690px;
	   font-family: "Geist", sans-serif;
	   font-size: 18px;
	   font-weight: 400;
	   line-height: 1.55;
	   text-align: center;
	   color: rgba(0, 0, 0, 0.55);
   }
   
   /* ==========================================================================
		 Features
		 ========================================================================== */
   
   .features {
	   width: 100%;
	   padding: 0 40px;
   }
   
   .features__container {
	   position: relative;
	   display: flex;
	   flex-direction: column;
	   gap: 40px;
	   width: 100%;
	   max-width: 1440px;
	   margin-inline: auto;
	   padding: 40px 100px 80px;
	   border-left: 1px dashed #dadada;
	   border-right: 1px dashed #dadada;
	   border-bottom: 1px dashed #dadada;
   }
   
   .features__container::before,
   .features__container::after {
	   content: "";
	   position: absolute;
	   bottom: -5px;
	   left: -5px;
	   z-index: 5;
	   width: 10px;
	   height: 10px;
	   border: 1px solid #dadada;
	   background: #ffffff;
	   outline: 2px solid #ffffff;
   }
   
   .features__container::after {
	   right: -5px;
	   left: auto;
   }
   
   .features__row {
	   display: flex;
	   align-items: center;
	   justify-content: space-between;
	   gap: clamp(20px, 3.5vw, 40px);
	   width: 100%;
	   min-width: 0;
   }
   
   .features__copy {
	   display: flex;
	   flex-direction: column;
	   gap: 10px;
	   flex: 1 1 38%;
	   width: 38%;
	   max-width: 427px;
	   min-width: 0;
   }
   
   .features__title {
	   font-family: "neue-haas-grotesk-display", sans-serif;
	   font-size: 28px;
	   font-weight: 500;
	   line-height: 1.47;
	   color: #000000;
   }
   
   .features__text {
	   font-family: "Geist", sans-serif;
	   font-size: 16px;
	   line-height: 1.5;
	   color: #605f5f;
   }
   
   .features__media {
	   flex: 1 1 48%;
	   width: 48%;
	   max-width: 550px;
	   min-width: 0;
	   height: auto;
	   aspect-ratio: 550 / 336;
	   background: #f8f8f8;
	   overflow: hidden;
   }
   
   .features__media > img {
	   width: 100%;
	   height: 100%;
	   object-fit: cover;
	   object-position: center;
   }
   
   .features__media--dashboard {
	   display: flex;
	   align-items: center;
	   justify-content: right;
	   aspect-ratio: auto;
	   height: auto;
	   min-height: auto;
	   padding: 10px 0 0;
	   background: #f8f8f8;
	   border-radius: 0;
	   overflow: hidden;
   }
   
   .features__media--dashboard > img {
	   width: 100%;
	   height: auto;
	   max-width: 100%;
	   object-fit: contain;
   }
   
   .features__dashboard-reveal {
	   will-change: transform, opacity;
   }
   
   .feature-orbit {
	   position: relative;
	   width: 100%;
	   height: 100%;
	   background: #f8f8f8;
   }
   
   .feature-orbit__center {
	   position: absolute;
	   left: 50%;
	   top: 50%;
	   z-index: 2;
	   display: flex;
	   align-items: center;
	   justify-content: center;
	   padding: 10px;
	   border-radius: 0;
	   background: #000000;
	   color: #ffffff;
	   font-family: "Geist", sans-serif;
	   font-size: 14px;
	   font-weight: 500;
	   line-height: 1;
	   letter-spacing: -0.01em;
	   transform: translate(-50%, -50%);
   }
   
   .feature-orbit__icon {
	   position: absolute;
	   left: var(--x);
	   top: var(--y);
	   z-index: 1;
	   display: flex;
	   align-items: center;
	   justify-content: center;
	   border: 1px solid #ececec;
	   border-radius: 50%;
	   background: #ffffff;
	   box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
	   transform: translate(-50%, -50%);
	   animation: feature-orbit-float 5s ease-in-out infinite;
   }
   
   .feature-orbit__icon:nth-child(2) {
	   animation-duration: 4.8s;
	   animation-delay: 0s;
   }
   
   .feature-orbit__icon:nth-child(3) {
	   animation-duration: 5.2s;
	   animation-delay: -0.8s;
   }
   
   .feature-orbit__icon:nth-child(4) {
	   animation-duration: 4.4s;
	   animation-delay: -1.6s;
   }
   
   .feature-orbit__icon:nth-child(5) {
	   animation-duration: 5.6s;
	   animation-delay: -0.4s;
   }
   
   .feature-orbit__icon:nth-child(6) {
	   animation-duration: 4.6s;
	   animation-delay: -2.1s;
   }
   
   .feature-orbit__icon:nth-child(7) {
	   animation-duration: 5.4s;
	   animation-delay: -1.2s;
   }
   
   .feature-orbit__icon:nth-child(8) {
	   animation-duration: 4.2s;
	   animation-delay: -2.8s;
   }
   
   .feature-orbit__icon:nth-child(9) {
	   animation-duration: 5s;
	   animation-delay: -0.6s;
   }
   
   @keyframes feature-orbit-float {
	   0%,
	   100% {
		   transform: translate(-50%, -50%) translateY(0);
	   }
	   50% {
		   transform: translate(-50%, -50%) translateY(-10px);
	   }
   }
   
   .feature-orbit__icon--lg {
	   width: 10.909091%;
	   height: auto;
	   aspect-ratio: 1;
   }
   
   .feature-orbit__icon--md {
	   width: 10.181818%;
	   height: auto;
	   aspect-ratio: 1;
   }
   
   .feature-orbit__icon--sm {
	   width: 8%;
	   height: auto;
	   aspect-ratio: 1;
   }
   
   .feature-orbit__icon img {
	   display: block;
	   width: 46.666667%;
	   height: auto;
	   aspect-ratio: 1;
	   object-fit: contain;
   }
   
   .feature-orbit__icon--lg img {
	   width: 46.666667%;
   }
   
   .feature-orbit__icon--md img {
	   width: 42.857143%;
   }
   
   .feature-orbit__icon--sm img {
	   width: 45.454545%;
   }
   
   .feature-orbit__icon img[src*="deepseek"] {
	   width: auto;
	   max-width: 46.666667%;
	   max-height: 33.333333%;
	   aspect-ratio: auto;
   }
   
   .feature-orbit__icon--md img[src*="deepseek"] {
	   max-width: 42.857143%;
	   max-height: 30.357143%;
   }
   
   .feature-orbit__icon--sm img[src*="deepseek"] {
	   max-width: 45.454545%;
	   max-height: 31.818182%;
   }
   
   .feature-orbit__icon img[src*="perplexity-black"] {
	   width: auto;
	   max-width: 36.666667%;
	   max-height: 43.333333%;
	   aspect-ratio: auto;
   }
   
   .feature-orbit__icon--md img[src*="perplexity-black"] {
	   max-width: 35.714286%;
	   max-height: 42.857143%;
   }
   
   .feature-orbit__icon--sm img[src*="perplexity-black"] {
	   max-width: 40.909091%;
	   max-height: 50%;
   }
   
   .feature-orbit__icon img[src*="claude-colored"] {
	   max-width: 50%;
	   max-height: 50%;
   }
   
   .question-stack {
	   width: 100%;
	   height: 100%;
   }
   
   .question-stack__viewport {
	   position: relative;
	   width: 100%;
	   height: 100%;
	   overflow: hidden;
   }
   
   .question-stack__track {
	   position: absolute;
	   left: 0;
	   right: 0;
	   display: flex;
	   flex-direction: column;
	   align-items: center;
	   gap: 10px;
	   width: 100%;
	   padding: 0 3.636364%;
	   will-change: transform;
   }
   
   .question-stack__item {
	   display: flex;
	   align-items: center;
	   gap: 14px;
	   width: 100%;
	   max-width: 75.272727%;
	   min-height: 52px;
	   padding: 15px 21px;
	   background: #ffffff;
	   border: 1px solid #ececec;
	   border-radius: 14px;
	   box-shadow: none;
	   flex-shrink: 0;
	   box-sizing: border-box;
	   transform: scale(1);
	   transform-origin: center center;
	   transition:
		   box-shadow 0.5s ease,
		   border-color 0.5s ease,
		   transform 0.5s ease;
   }
   
   .question-stack__item--pos-0,
   .question-stack__item--pos-4 {
	   opacity: 0.52;
	   transform: scale(1);
   }
   
   .question-stack__item--pos-1,
   .question-stack__item--pos-3 {
	   opacity: 0.82;
	   transform: scale(1);
   }
   
   .question-stack__item--pos-2 {
	   opacity: 1;
	   border-color: #e8e8e8;
	   transform: scale(1.08);
	   box-shadow:
		   0 8px 16px rgba(0, 0, 0, 0.04),
		   0 20px 40px rgba(0, 0, 0, 0.08);
   }
   
   .question-stack__icon {
	   flex-shrink: 0;
	   width: 24px;
	   height: 24px;
	   object-fit: contain;
   }
   
   .question-stack__item--pos-2 .question-stack__icon {
	   width: 26px;
	   height: 26px;
   }
   
   .question-stack__text {
	   margin: 0;
	   font-family: "Geist", sans-serif;
	   font-size: 14px;
	   font-weight: 400;
	   line-height: 1.43;
	   color: #b8b8b8;
	   white-space: nowrap;
	   overflow: hidden;
	   text-overflow: ellipsis;
	   transition: color 0.5s ease;
   }
   
   .question-stack__item--pos-2 .question-stack__text {
	   font-size: 15px;
	   line-height: 1.47;
	   color: #3a3a3a;
   }
   
   /* ==========================================================================
		 How it works
		 ========================================================================== */
   
   .how {
	   width: 100%;
	   padding: 0 40px;
   }
   
   .how__container {
	   position: relative;
	   display: flex;
	   flex-direction: column;
	   align-items: center;
	   gap: 48px;
	   width: 100%;
	   max-width: 1440px;
	   margin-inline: auto;
	   padding: 80px 100px 80px;
	   border-left: 1px dashed #dadada;
	   border-right: 1px dashed #dadada;
	   border-bottom: 1px dashed #dadada;
   }
   
   .how__container::before,
   .how__container::after {
	   content: "";
	   position: absolute;
	   bottom: -5px;
	   left: -5px;
	   z-index: 5;
	   width: 10px;
	   height: 10px;
	   border: 1px solid #dadada;
	   background: #ffffff;
	   outline: 2px solid #ffffff;
   }
   
   .how__container::after {
	   right: -5px;
	   left: auto;
   }
   
   .how__header {
	   display: flex;
	   flex-direction: column;
	   align-items: center;
	   gap: 16px;
	   max-width: 786px;
	   text-align: center;
   }
   
   .how__title {
	   font-family: "neue-haas-grotesk-display", sans-serif;
	   font-size: 42px;
	   font-weight: 500;
	   line-height: 1.25;
	   color: #000000;
   }
   
   .how__subtitle {
	   font-family: "Geist", sans-serif;
	   font-weight: 300;
	   font-size: 18px;
	   line-height: 1.4;
	   color: #605f5f;
   }
   
   .how__cards {
	   display: flex;
	   flex-direction: column;
	   gap: 16px;
	   width: 100%;
	   min-width: 0;
   }
   
   .how__row {
	   display: flex;
	   align-items: stretch;
	   gap: 16px;
	   width: 100%;
	   min-width: 0;
   }
   
   .how__card {
	   display: flex;
	   flex-direction: column;
	   gap: 8px;
	   flex: none;
	   min-width: 0;
	   padding: 24px;
	   background: #fbfbfb;
	   overflow: hidden;
   }
   
   .how__card--brand {
	   width: calc(54% - 8px);
	   padding: 24px 24px 0;
   }
   
   .how__card--research {
	   width: calc(46% - 8px);
   }
   
   .how__card--generating {
	   width: calc(44% - 8px);
   }
   
   .how__card--tracking {
	   width: calc(56% - 8px);
   }
   
   .how__card--full {
	   width: 100%;
   }
   
   .how__card-tag {
	   display: inline-flex;
	   align-items: center;
	   gap: 8px;
   }
   
   .how__card-step,
   .how__card-label {
	   font-family: "Geist", sans-serif;
	   font-size: 10.5px;
	   line-height: 1.3;
	   letter-spacing: 1.26px;
	   text-transform: uppercase;
	   color: #000000;
   }
   
   .how__card-dot {
	   width: 3.8px;
	   height: 3.8px;
	   border-radius: 50%;
	   background: #000000;
   }
   
   .how__card-title {
	   margin: 0;
	   font-family: "neue-haas-grotesk-display", sans-serif;
	   font-weight: 500;
	   font-size: 28px;
	   line-height: 1.4;
	   color: #000000;
   }
   
   .how__card-text {
	   margin: 0;
	   font-family: "Geist", sans-serif;
	   font-weight: 300;
	   font-size: 12px;
	   line-height: 1.67;
	   color: #000000;
	   max-width: 420px;
   }
   
   .how__card-media {
	   display: flex;
	   align-items: flex-end;
	   justify-content: center;
	   margin-top: auto;
	   width: 100%;
   }
   
   .how__card--wide .how__card-media,
   .how__card--full .how__card-media {
	   width: calc(100% + 48px);
	   margin-left: -24px;
	   margin-right: -24px;
	   margin-bottom: -24px;
   }
   
   .how__card--brand .how__card-media {
	   width: 100%;
	   margin-left: 0;
	   margin-right: 0;
	   margin-top: 0;
	   margin-bottom: 0;
	   overflow: visible;
   }
   
   .how__card-reveal {
	   will-change: transform, opacity;
   }
   
   .how__card--research .how__card-media {
	   width: calc(100% + 48px);
	   margin-left: -24px;
	   margin-right: -24px;
	   margin-bottom: -24px;
   }
   
   .how__card--research .how__card-media img {
	   max-height: none;
   }
   
   .how__card--generating {
	   padding-bottom: 0;
   }
   
   .how__card--generating .how__card-media img {
	   margin-left: -40px;
   }
   
   .how__card--tracking .how__card-media {
	   overflow: visible;
   }
   
   .how__card--tracking .how__card-media img {
	   padding-left: 20px;
	   margin-right: -10px;
	   margin-bottom: -5px;
   }
   
   .how__card--feedback .how__card-media img {
	   max-width: 800px;
	   margin-left: auto;
	   margin-top: -100px;
   }
   
   .how__card-media img {
	   width: 100%;
	   height: auto;
	   object-fit: contain;
	   object-position: bottom center;
	   display: block;
   }
   
   .how__card:not(.how__card--wide):not(.how__card--full) .how__card-media img {
	   max-height: 190px;
   }
   
   /* ==========================================================================
		 Why MAX
		 ========================================================================== */
   
   .why {
	   --why-sticky-top: 100px;
	   --why-card-count: 3;
	   --why-card-step: 340px;
	   --why-cards-gap: 32px;
	   position: relative;
	   z-index: 2;
	   width: 100%;
	   min-height: calc(160px + var(--why-card-count) * var(--why-card-step) + (var(--why-card-count) - 1) * var(--why-cards-gap));
	   padding: 0 40px;
	   background: #ffffff;
   }
   
   .why__sticky-track {
	   position: relative;
   }
   
   .why__container {
	   position: relative;
	   display: flex;
	   align-items: flex-start;
	   justify-content: space-between;
	   gap: clamp(24px, 4vw, 48px);
	   width: 100%;
	   max-width: 1440px;
	   margin-inline: auto;
	   padding: 80px 100px 80px;
	   border-left: 1px dashed #dadada;
	   border-right: 1px dashed #dadada;
	   border-bottom: 1px dashed #dadada;
	   min-width: 0;
   }
   
   .why__container::before,
   .why__container::after {
	   content: "";
	   position: absolute;
	   bottom: -5px;
	   left: -5px;
	   z-index: 5;
	   width: 10px;
	   height: 10px;
	   border: 1px solid #dadada;
	   background: #ffffff;
	   outline: 2px solid #ffffff;
   }
   
   .why__container::after {
	   right: -5px;
	   left: auto;
   }
   
   .why__copy {
	   position: sticky;
	   top: var(--why-sticky-top);
	   align-self: flex-start;
	   display: flex;
	   flex-direction: column;
	   align-items: flex-start;
	   gap: 24px;
	   width: 52%;
	   max-width: 568px;
	   min-width: 0;
   }
   
   .why__title {
	   font-family: "neue-haas-grotesk-display", sans-serif;
	   font-size: 42px;
	   font-weight: 500;
	   line-height: 1.25;
	   color: #000000;
   }
   
   .why__text {
	   font-family: "Geist", sans-serif;
	   font-weight: 300;
	   font-size: 18px;
	   line-height: 1.4;
	   color: #605f5f;
   }
   
   .why__cards {
	   display: flex;
	   flex-direction: column;
	   gap: var(--why-cards-gap);
	   width: 48%;
	   max-width: 520px;
	   min-width: 0;
   }
   
   .why__card-wrap {
	   position: sticky;
	   top: var(--why-sticky-top);
	   padding-top: 40px;
	   min-height: var(--why-card-step);
   }
   
   .why__card-wrap:nth-child(1) {
	   z-index: 1;
   }
   
   .why__card-wrap:nth-child(2) {
	   z-index: 2;
   }
   
   .why__card-wrap:nth-child(3) {
	   z-index: 3;
   }
   
   .why__card-ring {
	   --ring-size: 31.153846%;
	   --ring-inset: 1.538462%;
	   --ring-gap: calc((100% - (2 * var(--ring-inset)) - (3 * var(--ring-size))) / 2);
	   --ring-shape: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
	   position: absolute;
	   top: 1px;
	   width: var(--ring-size);
	   height: 40px;
	   z-index: 0;
	   pointer-events: none;
	   display: flex;
	   align-items: center;
	   justify-content: center;
   }
   
   .why__card-ring::before,
   .why__card-ring::after {
	   content: "";
	   position: absolute;
	   inset: 0;
	   clip-path: var(--ring-shape);
   }
   
   .why__card-ring::before {
	   background: #d1d0cf;
   }
   
   .why__card-ring::after {
	   inset: 1px 2px;
	   background: #ffffff;
   }
   
   .why__card-ring--1 {
	   left: var(--ring-inset);
   }
   
   .why__card-ring--2 {
	   left: calc(var(--ring-inset) + var(--ring-size) + var(--ring-gap));
   }
   
   .why__card-ring--3 {
	   left: calc(var(--ring-inset) + (2 * (var(--ring-size) + var(--ring-gap))));
   }
   
   .why__card-number {
	   z-index: 1;
	   font-family: "Geist", sans-serif;
	   font-weight: 500;
	   font-size: 14px;
	   line-height: 1.7;
	   color: #0e1201;
   }
   
   .why__card {
	   position: relative;
	   z-index: 1;
	   display: flex;
	   flex-direction: column;
	   gap: 17px;
	   width: 100%;
	   padding: 16px;
	   background: #ffffff;
	   border: 1px solid #dadada;
   }
   
   .why__card-icon {
	   display: flex;
	   align-items: center;
	   justify-content: center;
	   width: 44px;
	   height: 44px;
	   border-radius: 360px;
	   border: 1px solid rgba(100, 99, 98, 0.1);
   }
   
   .why__card-icon img {
	   width: 24px;
	   height: 24px;
   }
   
   .why__card-body {
	   display: flex;
	   flex-direction: column;
	   gap: 28px;
   }
   
   .why__card-text-group {
	   display: flex;
	   flex-direction: column;
	   gap: 11px;
   }
   
   .why__card-title {
	   font-family: "neue-haas-grotesk-display", sans-serif;
	   font-size: 18px;
	   line-height: 1.45;
	   color: #0e1201;
   }
   
   .why__card-text {
	   font-family: "Geist", sans-serif;
	   font-weight: 300;
	   font-size: 16px;
	   line-height: 1.38;
	   color: rgba(0, 0, 0, 0.7);
   }
   
   .why__tags {
	   display: flex;
	   flex-wrap: wrap;
	   gap: 4px;
   }
   
   .why__tag {
	   padding: 8px 14px;
	   border: 1px dashed #d9d9d9;
	   border-radius: 46.71px;
	   font-family: "Geist", sans-serif;
	   font-size: 11.4px;
	   line-height: 1.25;
	   color: #64676d;
   }
   
   /* ==========================================================================
		 Testimonials
		 ========================================================================== */
   
   .testimonials {
	   width: 100%;
	   padding: 0 40px;
   }
   
   .testimonials__container {
	   position: relative;
	   display: flex;
	   flex-direction: column;
	   align-items: center;
	   gap: 40px;
	   width: 100%;
	   max-width: 1440px;
	   margin-inline: auto;
	   padding: 70px 100px 80px;
	   border-left: 1px dashed #dadada;
	   border-right: 1px dashed #dadada;
	   border-bottom: 1px dashed #dadada;
   }
   
   .testimonials__container::before,
   .testimonials__container::after {
	   content: "";
	   position: absolute;
	   bottom: -5px;
	   left: -5px;
	   z-index: 5;
	   width: 10px;
	   height: 10px;
	   border: 1px solid #dadada;
	   background: #ffffff;
	   outline: 2px solid #ffffff;
   }
   
   .testimonials__container::after {
	   right: -5px;
	   left: auto;
   }
   
   .testimonials__header {
	   display: flex;
	   flex-direction: column;
	   align-items: center;
	   gap: 8px;
	   text-align: center;
   }
   
   .testimonials__title {
	   max-width: 491px;
	   font-family: "neue-haas-grotesk-display", sans-serif;
	   font-size: 42px;
	   font-weight: 500;
	   line-height: 1.2;
	   color: #000000;
   }
   
   .testimonials__accordion {
	   display: flex;
	   gap: 8px;
	   width: 100%;
	   min-width: 0;
	   height: auto;
	   aspect-ratio: 1240 / 400;
	   max-height: 400px;
   }
   
   .testimonials__panel {
	   flex: 1 1 0;
	   min-width: 0;
	   height: 100%;
	   overflow: hidden;
	   background: #fafafa;
	   cursor: pointer;
	   container-type: inline-size;
	   transition:
		   flex 0.65s cubic-bezier(0.4, 0, 0.2, 1),
		   min-width 0.65s cubic-bezier(0.4, 0, 0.2, 1);
   }
   
   .testimonials__panel.is-active {
	   flex: 5 1 0;
	   min-width: 0;
	   cursor: default;
   }
   
   .testimonials__panel-inner {
	   display: flex;
	   height: 100%;
	   width: 100%;
	   min-width: 0;
   }
   
   .testimonials__photo {
	   flex: 0 0 100%;
	   width: 100%;
	   max-width: none;
	   height: 100%;
	   object-fit: cover;
	   object-position: center;
	   transition:
		   flex 0.65s cubic-bezier(0.4, 0, 0.2, 1),
		   width 0.65s cubic-bezier(0.4, 0, 0.2, 1);
   }
   
   .testimonials__panel.is-active .testimonials__photo {
	   flex: 0 0 32.7610887%;
	   width: 32.7610887%;
   }
   
   .testimonials__content {
	   display: flex;
	   flex-direction: column;
	   justify-content: space-between;
	   flex: 0 0 0%;
	   width: 0;
	   min-width: 0;
	   padding: 0;
	   opacity: 0;
	   overflow: hidden;
	   pointer-events: none;
	   transition:
		   flex 0.65s cubic-bezier(0.4, 0, 0.2, 1),
		   width 0.65s cubic-bezier(0.4, 0, 0.2, 1),
		   padding 0.65s cubic-bezier(0.4, 0, 0.2, 1),
		   opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1);
   }
   
   .testimonials__panel.is-active .testimonials__content {
	   flex: 1 1 67.2389113%;
	   width: 67.2389113%;
	   padding: 3.4334764%;
	   opacity: 1;
	   pointer-events: auto;
   }
   
   .testimonials__brand {
	   width: 118px;
	   max-width: 40%;
	   height: auto;
	   aspect-ratio: 118 / 28;
	   object-fit: contain;
	   object-position: left center;
   }
   
   .testimonials__brand-text {
	   font-family: "neue-haas-grotesk-display", sans-serif;
	   font-size: 20px;
	   font-weight: 500;
	   line-height: 1;
	   color: #000000;
   }
   
   .testimonials__quote-wrap {
	   display: flex;
	   flex-direction: column;
	   gap: 24px;
   }
   
   .testimonials__quote {
	   margin: 0;
	   font-family: "Geist", sans-serif;
	   font-size: 20px;
	   line-height: 1.4;
	   letter-spacing: -0.8px;
	   color: #000000;
   }
   
   .testimonials__attribution {
	   font-family: "Geist", sans-serif;
	   font-size: 16px;
	   line-height: 1.4;
	   letter-spacing: -0.48px;
	   color: #605f5f;
   }
   
   /* ==========================================================================
		 FAQ
		 ========================================================================== */
   
   .faq {
	   width: 100%;
	   padding: 0 40px;
   }
   
   .faq__container {
	   position: relative;
	   display: flex;
	   align-items: flex-start;
	   justify-content: space-between;
	   gap: clamp(24px, 4vw, 48px);
	   width: 100%;
	   max-width: 1440px;
	   margin-inline: auto;
	   padding: 80px 100px 80px;
	   border-left: 1px dashed #dadada;
	   border-right: 1px dashed #dadada;
	   border-bottom: 1px dashed #dadada;
	   min-width: 0;
   }
   
   .faq__container::before,
   .faq__container::after {
	   content: "";
	   position: absolute;
	   bottom: -5px;
	   left: -5px;
	   z-index: 5;
	   width: 10px;
	   height: 10px;
	   border: 1px solid #dadada;
	   background: #ffffff;
	   outline: 2px solid #ffffff;
   }
   
   .faq__container::after {
	   right: -5px;
	   left: auto;
   }
   
   .faq__intro {
	   display: flex;
	   flex-direction: column;
	   align-items: flex-start;
	   align-self: center;
	   gap: 8px;
	   flex: 1 1 40%;
	   width: 40%;
	   max-width: 420px;
	   min-width: 0;
   }
   
   .faq__title {
	   font-family: "neue-haas-grotesk-display", sans-serif;
	   font-size: 42px;
	   font-weight: 300;
	   line-height: 1.2;
	   color: #000000;
	   margin-bottom: 16px;
   }
   
   .faq__list {
	   flex: 1 1 56%;
	   width: 56%;
	   min-width: 0;
   }
   
   .faq_accordion {
	   display: flex;
	   flex-direction: column;
	   width: 100%;
   }
   
   .accordion_cover {
	   border-top: 1px dashed #d9d9d9;
   }
   
   .accordion_heading {
	   position: relative;
	   display: flex;
	   align-items: flex-start;
	   gap: 16px;
	   width: 100%;
	   padding: 24px 28px 24px 6px;
	   border: none;
	   background: transparent;
	   text-align: left;
	   cursor: pointer;
   }
   
   .accordion_heading::before,
   .accordion_heading::after {
	   content: "";
	   position: absolute;
	   top: 50%;
	   right: 6px;
	   width: 12px;
	   height: 2px;
	   background-color: #0e1201;
	   opacity: 1;
	   transition: transform 0.2s linear;
   }
   
   .accordion_heading::before {
	   transform: translateY(-50%) rotate(90deg);
   }
   
   .accordion_heading::after {
	   transform: translateY(-50%);
   }
   
   .accordion_heading.active::before {
	   transform: translateY(-50%) rotate(135deg);
   }
   
   .accordion_heading.active::after {
	   transform: translateY(-50%) rotate(45deg);
   }
   
   .faq__number {
	   font-family: "neue-haas-grotesk-display", sans-serif;
	   font-weight: 300;
	   font-size: 14px;
	   line-height: 1.2;
	   letter-spacing: -0.28px;
	   color: #000000;
	   padding-top: 2px;
	   flex-shrink: 0;
   }
   
   .faq__question {
	   flex: 1;
	   min-width: 0;
	   font-family: "neue-haas-grotesk-display", sans-serif;
	   font-weight: 300;
	   font-size: 16px;
	   line-height: 1.2;
	   color: #0e1201;
	   letter-spacing: 0.5px;
   }
   
   .accordion_panel {
	   width: 100%;
	   max-height: 0;
	   overflow: hidden;
	   transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   }
   
   .accordion_text {
	   margin: 0;
	   padding: 0 28px 26px 34px;
	   font-family: "Geist", sans-serif;
	   font-size: 14px;
	   line-height: 1.57;
	   color: #64676d;
   }
   
   /* ==========================================================================
		 Empty Section
		 ========================================================================== */
   
   .empty {
	   width: 100%;
	   padding: 0 40px;
   }
   
   .empty__container {
	   position: relative;
	   width: 100%;
	   height: 6px;
	   background: #ffffff;
	   border-left: 1px dashed #dadada;
	   border-right: 1px dashed #dadada;
   }
   /* ==========================================================================
		 Final CTA
		 ========================================================================== */
   
   .final-cta {
	   width: 100%;
	   position: relative;
	   background: #060606;
	   color: #ffffff;
	   overflow: hidden;
	   min-height: 708px;
   }
   
   .final-cta__bg {
	   position: absolute;
	   inset: 0;
	   z-index: 0;
   }
   
   .final-cta__bg img {
	   width: 100%;
	   height: 100%;
	   object-fit: cover;
   }
   
   .final-cta__overlay {
	   position: absolute;
	   inset: 0;
	   background: rgba(0, 0, 0, 0.8);
	   z-index: 1;
   }
   
   .final-cta__container {
	   position: relative;
	   z-index: 2;
	   display: flex;
	   flex-direction: column;
	   align-items: center;
	   gap: 15px;
	   width: 100%;
	   max-width: 1440px;
	   margin-inline: auto;
	   padding: 79px 160px 340px;
	   text-align: center;
   }
   
   .final-cta__title {
	   max-width: 590px;
	   font-family: "neue-haas-grotesk-display", sans-serif;
	   font-weight: 700;
	   font-size: 44px;
	   line-height: 1.15;
	   letter-spacing: -0.02em;
	   color: #ffffff;
   }
   
   .final-cta__text {
	   font-family: "Geist", sans-serif;
	   font-size: 16px;
	   line-height: 1.6;
	   color: #b0b0b0;
	   margin-bottom: 8px;
   }
   
   .final-cta__actions {
	   display: flex;
	   align-items: center;
	   gap: 15px;
	   flex-wrap: wrap;
	   justify-content: center;
	   margin-top: 8px;
   }
   
   .final-cta__graph {
	   position: absolute;
	   left: 0;
	   right: 0;
	   bottom: 0;
	   width: 100%;
	   height: 294px;
	   pointer-events: none;
	   z-index: 2;
   }
   
   .final-cta__graph img {
	   display: block;
	   width: 100%;
	   height: 100%;
	   object-fit: fill;
   }
   
   .final-cta__pills {
	   position: absolute;
	   left: 0;
	   right: 0;
	   bottom: 80px;
	   width: 100%;
	   height: 220px;
	   pointer-events: none;
	   z-index: 3;
   }
   
   .final-cta__pill {
	   position: absolute;
	   display: inline-flex;
	   align-items: center;
	   padding: 9px 18px;
	   border: 1px solid rgba(255, 255, 255, 0.4);
	   border-radius: 32.58px;
	   background: rgba(0, 0, 0, 0.35);
	   backdrop-filter: blur(9px);
	   font-family: "Geist", sans-serif;
	   font-size: 14.5px;
	   line-height: 1.3;
	   color: #ffffff;
	   white-space: nowrap;
	   animation: final-cta-float 5s ease-in-out infinite;
   }
   
   .final-cta__pill--1 {
	   left: 8%;
	   top: 55%;
	   animation-duration: 4.8s;
	   animation-delay: 0s;
   }
   
   .final-cta__pill--2 {
	   left: 18%;
	   top: 12%;
	   animation-duration: 5.4s;
	   animation-delay: -1.2s;
   }
   
   .final-cta__pill--3 {
	   left: 48%;
	   top: 68%;
	   animation-duration: 4.2s;
	   animation-delay: -0.6s;
   }
   
   .final-cta__pill--4 {
	   left: 66%;
	   top: 2%;
	   animation-duration: 5.8s;
	   animation-delay: -2s;
   }
   
   .final-cta__pill--5 {
	   left: 82%;
	   top: 52%;
	   animation-duration: 4.6s;
	   animation-delay: -1.5s;
   }
   
   @keyframes final-cta-float {
	   0%,
	   100% {
		   transform: translateY(0);
	   }
	   50% {
		   transform: translateY(-10px);
	   }
   }
   
   @media (prefers-reduced-motion: reduce) {
	   .final-cta__pill {
		   animation: none;
	   }
   
	   .feature-orbit__icon {
		   animation: none;
	   }
   
	   .why__copy,
	   .why__card-wrap {
		   position: static;
		   top: auto;
	   }
   
	   .why {
		   min-height: 0;
	   }
   
	   .why__cards {
		   gap: 32px;
	   }
   
	   .why__card-wrap:not(:last-child),
	   .why__card-wrap:last-child {
		   margin-bottom: 0;
		   margin-top: 0;
	   }
   }
   
   /* ==========================================================================
		 Footer
		 ========================================================================== */
   
   .footer {
	   width: 100%;
	   background: #0a0a0a;
	   color: #b0b0b0;
	   padding: 52px 0 0;
   }
   
   .footer__container {
	   width: 100%;
	   max-width: 1440px;
	   margin-inline: auto;
	   padding-inline: 160px;
   }
   
   .footer__columns {
	   display: flex;
	   gap: 24px;
	   padding-bottom: 40px;
   }
   
   .footer__column {
	   display: flex;
	   flex-direction: column;
	   gap: 11px;
	   flex: 1;
   }
   
   .footer__heading {
	   font-family: "neue-haas-grotesk-display", sans-serif;
	   font-weight: 700;
	   font-size: 12.9px;
	   line-height: 1.15;
	   letter-spacing: -0.26px;
	   color: #ffffff;
	   margin-bottom: 1px;
   }
   
   .footer__link {
	   font-family: "Geist", sans-serif;
	   font-size: 14px;
	   line-height: 1.6;
	   color: #b0b0b0;
	   transition: color 0.2s ease;
   }
   
   .footer__link:hover {
	   color: #ffffff;
   }
   
   .footer__bottom {
	   display: flex;
	   align-items: center;
	   justify-content: space-between;
	   gap: 20px;
	   flex-wrap: wrap;
	   padding: 25px 0 24px;
	   border-top: 1px solid rgba(255, 255, 255, 0.12);
   }
   
   .footer__copy,
   .footer__legal-link {
	   font-family: "Geist", sans-serif;
	   font-size: 13px;
	   line-height: 1.6;
	   color: #b0b0b0;
   }
   
   .footer__legal {
	   display: flex;
	   gap: 20px;
   }

   .footer__wordmark {
	  display: block;
    flex-shrink: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    color: #5c5c5c;
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-size: 21.01vw;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02975em;
    text-align: center;
    white-space: nowrap;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.08) 55%, rgba(255, 255, 255, -0.1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    pointer-events: none;
    user-select: none;
   }
   
   .footer-end-img {
       width: 100%;
       margin: 0 auto;
       padding: 0 20px 20px;
   }

   /*.footer__wordmark-text {*/
	  /* display: block;*/
	  /* width: 100%;*/
	  /* font-family: "neue-haas-grotesk-display", sans-serif;*/
	  /* font-weight: 700;*/
	  /* font-size: clamp(108px, 17vw, 268px);*/
	  /* line-height: 0.82;*/
	  /* letter-spacing: -0.045em;*/
	  /* text-align: center;*/
	  /* white-space: nowrap;*/
	  /* background: linear-gradient(*/
		 /*  180deg,*/
		 /*  rgba(255, 255, 255, 0.18) 0%,*/
		 /*  rgba(255, 255, 255, 0.07) 30%,*/
		 /*  rgba(255, 255, 255, 0.02) 55%,*/
		 /*  rgba(255, 255, 255, 0) 80%*/
	  /* );*/
	  /* -webkit-background-clip: text;*/
	  /* background-clip: text;*/
	  /* color: transparent;*/
	  /* transform: translateY(10%);*/
   /*}*/
   
   /* ==========================================================================
		 Tablet
		 ========================================================================== */
   
   @media (max-width: 1024px) {
	   /* Header */
	   .header {
		   padding: 0 20px 6px;
	   }
	   .header__container {
		   padding-inline: 32px;
	   }
   
	   .header__right {
		   gap: 16px;
	   }

	   .header__menu-panel {
		   gap: 16px;
	   }

	   .header__buttons {
		   gap: 10px;
	   }

	   .header__nav {
		   gap: 4px;
	   }
   
	   .header__nav-link {
		   padding: 8px 10px;
		   font-size: 14px;
	   }
   
	   /* Hero */
	   .hero {
		   padding: 0 20px;
	   }
	   .hero__inner-container {
		   min-height: 760px;
		   padding: 56px 32px 0;
	   }
   
	   .hero__title {
		   font-size: 40px;
	   }
   
	   .hero__stage {
		   --orbit-lg-size: 1000px;
		   --orbit-md-size: 780px;
		   --orbit-md-inset: 110px;
		   --orbit-md-drop: 40px;
	   }
   
	   .hero__globe {
		   width: 560px;
		   transform: translate(-50%, 48%);
	   }
   
	   .hero__globe-canvas {
		   width: 560px;
		   height: 560px;
		   transform: translate(-50%, 48%);
	   }
   
	   .hero__cite-zone {
		   width: 360px;
		   height: 220px;
	   }
   
	   /* Trusted logos */
	   .trusted {
		   padding: 0 20px;
	   }
	   .trusted__container {
		   padding: 32px 32px 32px;
	   }
   
	   /* Problem */
	   .problem {
		   padding: 0 20px;
	   }
	   .problem__container {
		   padding: 56px 32px 40px;
	   }
   
	   .problem .eyebrow {
		   margin-bottom: 20px;
	   }
   
	   .problem__title {
		   margin-bottom: 28px;
		   font-size: 36px;
	   }
   
	   .how__title,
	   .why__title,
	   .testimonials__title,
	   .faq__title {
		   font-size: 36px;
	   }
   
	   /* Features */
	   .features {
		   padding: 0 20px;
	   }
	   .features__container {
		   padding: 40px 32px 64px;
	   }
   
	   .features__copy {
		   max-width: 360px;
	   }
   
	   .features__media--dashboard {
		   padding: 16px 0 0 16px;
	   }
   
	   /* How it works */
	   .how {
		   padding: 0 20px;
	   }
	   .how__container {
		   padding: 64px 32px 64px;
	   }
   
	   .how__card:not(.how__card--wide):not(.how__card--full) .how__card-media img {
		   max-height: 160px;
	   }
   
	   .how__card--feedback .how__card-media img {
		   margin-top: 0;
		   max-width: 100%;
	   }
   
	   /* Why MAX */
	   .why {
		   min-height: 0;
		   padding: 0 20px;
	   }
   
	   .why__sticky-track {
		   margin-bottom: 0;
	   }
   
	   .why__container {
		   padding: 64px 32px 64px;
	   }
	   .why__copy {
		   width: 48%;
	   }
	   .why__cards {
		   width: 52%;
	   }
   
	   .why__card-wrap:last-child {
		   margin-bottom: 0;
	   }
   
	   .why__cards {
		   gap: 32px;
	   }
   
	   /* Testimonials */
	   .testimonials {
		   padding: 0 20px;
	   }
	   .testimonials__container {
		   padding: 64px 32px 64px;
	   }
   
	   .testimonials__accordion {
		   aspect-ratio: 960 / 340;
		   max-height: 340px;
	   }
	   .testimonials__quote {
		   font-size: 18px;
	   }
   
	   /* FAQ */
	   .faq {
		   padding: 0 20px;
	   }
   
	   .faq__container {
		   flex-direction: column;
		   gap: 32px;
		   padding: 64px 32px 26px;
	   }
   
	   .faq__intro {
		   align-self: flex-start;
		   flex: none;
		   width: 100%;
		   max-width: 100%;
	   }
   
	   .faq__list {
		   flex: none;
		   width: 100%;
		   max-width: 100%;
	   }
   
	   /* Empty Section */
	   .empty {
		   padding: 0 20px;
	   }
   
	   /* Final CTA */
	   .final-cta {
		   min-height: 600px;
	   }
   
	   .final-cta__container {
		   padding-inline: 32px;
		   padding-bottom: 280px;
	   }
   
	   .final-cta__title {
		   font-size: 36px;
	   }
   
	   .final-cta__pills {
		   bottom: 60px;
		   height: 180px;
	   }
   
	   /* Footer */
	   .footer__container {
		   padding-inline: 32px;
	   }
   
	   .footer__columns {
		   flex-wrap: wrap;
	   }
   
	   .footer__column {
		   flex: 1 1 calc(50% - 12px);
	   }

	   /*.footer__wordmark {*/
		  /* height: clamp(104px, 15vw, 176px);*/
	   /*}*/

	   /*.footer__wordmark-text {*/
		  /* font-size: clamp(84px, 14.5vw, 196px);*/
	   /*}*/
   }
   
   /* ==========================================================================
		 Mobile
		 ========================================================================== */
   
   @media (max-width: 768px) {
	   /* Header */
	   .header {
		   padding: 0 5px 5px;
	   }
	   .header__container {
		   display: flex;
		   align-items: center;
		   justify-content: space-between;
		   padding: 12px 14px;
	   }

	   .header__right {
		   flex: 1;
		   justify-content: flex-end;
		   gap: 8px;
	   }

	   .header__menu-panel {
		   display: none;
		   position: absolute;
		   top: 100%;
		   left: 0;
		   right: 0;
		   flex-direction: column;
		   align-items: stretch;
		   gap: 16px;
		   background: #ffffff;
		   border-bottom: 1px solid #dadada;
		   padding: 12px 14px 20px;
	   }

	   .header__menu-panel.is-open {
		   display: flex;
	   }

	   .header__nav {
		   display: flex;
		   position: static;
		   flex-direction: column;
		   align-items: stretch;
		   gap: 0;
		   width: 100%;
		   padding: 0;
		   background: transparent;
		   border: 0;
	   }

	   .header__nav-link {
		   width: 100%;
	   }

	   .header__nav-item--dropdown {
		   padding-bottom: 0;
		   margin-bottom: 0;
	   }
   
	   .header__nav-link--dropdown {
		   width: 100%;
		   justify-content: space-between;
	   }
   
	   .header__submenu {
		   position: static;
		   left: auto;
		   top: auto;
		   min-width: 0;
		   width: 100%;
		   margin-top: 4px;
		   padding: 4px;
		   border: 0;
		   border-radius: 8px;
		   box-shadow: none;
		   background: #f8f8f8;
		   transform: none;
		   max-height: 0;
		   opacity: 0;
		   visibility: hidden;
		   overflow: hidden;
		   pointer-events: none;
		   transition:
			   max-height 0.35s ease,
			   opacity 0.25s ease,
			   visibility 0.25s ease,
			   padding 0.25s ease;
	   }
   
	   .header__nav-item--dropdown:hover .header__submenu,
	   .header__nav-item--dropdown:focus-within .header__submenu {
		   max-height: 0;
		   opacity: 0;
		   visibility: hidden;
		   pointer-events: none;
		   padding: 4px;
	   }
   
	   .header__nav-item--dropdown.is-open .header__submenu {
		   max-height: 320px;
		   opacity: 1;
		   visibility: visible;
		   pointer-events: auto;
		   padding: 4px;
		   transform: none;
	   }
   
	   .header__buttons {
		   display: flex;
		   flex-direction: column;
		   align-items: stretch;
		   gap: 12px;
		   width: 100%;
		   padding-top: 4px;
	   }

	   .header__buttons .btn {
		   width: 100%;
		   justify-content: center;
	   }
   
	   .header__menu-toggle {
		   display: inline-flex;
	   }
   
	   /* Sections — outer padding */
	   .hero,
	   .trusted,
	   .problem,
	   .features,
	   .how,
	   .why,
	   .testimonials,
	   .faq,
	   .empty {
		   padding: 0 5px;
	   }
   
	   /* Corner markers — smaller on mobile */
	   .header__container::before,
	   .header__container::after,
	   .hero__container::before,
	   .hero__container::after,
	   .trusted__container::before,
	   .trusted__container::after,
	   .features__container::before,
	   .features__container::after,
	   .how__container::before,
	   .how__container::after,
	   .why__container::before,
	   .why__container::after,
	   .testimonials__container::before,
	   .testimonials__container::after,
	   .faq__container::before,
	   .faq__container::after {
		   width: 6px;
		   height: 6px;
		   bottom: -3px;
		   left: -3px;
	   }
   
	   .header__container::after,
	   .hero__container::after,
	   .trusted__container::after,
	   .features__container::after,
	   .how__container::after,
	   .why__container::after,
	   .testimonials__container::after,
	   .faq__container::after {
		   right: -3px;
		   left: auto;
	   }
   
	   /* Hero */
	   .hero__inner-container {
		   min-height: 640px;
		   padding: 40px 14px 0;
	   }
   
	   .hero__stage {
		   --orbit-lg-size: 900px;
		   --orbit-md-size: 720px;
		   --orbit-md-inset: 90px;
		   --orbit-md-drop: 36px;
	   }
   
	   .hero__content {
		   gap: 18px;
	   }
   
	   .hero__title {
		   font-size: 32px;
	   }
   
	   .hero__subtitle {
		   font-size: 15px;
		   max-width: 100%;
	   }
   
	   .hero__icon {
		   width: 40px;
		   height: 40px;
	   }
   
	   .hero__icon img {
		   width: 20px;
		   height: 20px;
	   }
   
	   .hero__tooltip {
		   width: 168px;
		   bottom: calc(100% + 8px);
	   }
   
	   .hero__tooltip--chatgpt,
	   .hero__tooltip--gemini,
	   .hero__tooltip--perplexity,
	   .hero__tooltip--copilot,
	   .hero__tooltip--claude,
	   .hero__tooltip--deepseek,
	   .hero__tooltip--overview {
		   width: 188px;
	   }
   
	   .cite-card,
	   .cite-card--chatgpt,
	   .cite-card--gemini,
	   .cite-card--perplexity,
	   .cite-card--copilot,
	   .cite-card--claude,
	   .cite-card--deepseek,
	   .cite-card--overview {
		   padding: 8px 8px 7px;
		   border-radius: 10px;
	   }
   
	   .cite-card--gemini,
	   .cite-card--perplexity,
	   .cite-card--copilot,
	   .cite-card--claude {
		   border-radius: 12px;
	   }
   
	   .cite-card__header,
	   .cite-card--chatgpt .cite-card__header,
	   .cite-card--gemini .cite-card__header,
	   .cite-card--perplexity .cite-card__header,
	   .cite-card--copilot .cite-card__header,
	   .cite-card--claude .cite-card__header,
	   .cite-card--deepseek .cite-card__header,
	   .cite-card--overview .cite-card__header {
		   gap: 6px;
		   margin-bottom: 6px;
	   }
   
	   .cite-card__dial {
		   width: 14px;
		   height: 14px;
	   }
   
	   .cite-card__brand,
	   .cite-card--chatgpt .cite-card__brand,
	   .cite-card--claude .cite-card__brand,
	   .cite-card--deepseek .cite-card__brand {
		   font-size: 10px;
	   }
   
	   .cite-card__question,
	   .cite-card--chatgpt .cite-card__question,
	   .cite-card--gemini .cite-card__question,
	   .cite-card--perplexity .cite-card__question,
	   .cite-card--copilot .cite-card__question,
	   .cite-card--claude .cite-card__question,
	   .cite-card--deepseek .cite-card__question,
	   .cite-card--overview .cite-card__question {
		   margin-bottom: 4px;
		   font-size: 9px;
	   }
   
	   .cite-card__answer,
	   .cite-card--chatgpt .cite-card__answer,
	   .cite-card--gemini .cite-card__answer,
	   .cite-card--perplexity .cite-card__answer,
	   .cite-card--copilot .cite-card__answer,
	   .cite-card--claude .cite-card__answer,
	   .cite-card--deepseek .cite-card__answer,
	   .cite-card--overview .cite-card__answer {
		   font-size: 9px;
		   line-height: 1.35;
	   }
   
	   .cite-card__divider,
	   .cite-card--chatgpt .cite-card__divider,
	   .cite-card--gemini .cite-card__divider,
	   .cite-card--perplexity .cite-card__divider,
	   .cite-card--copilot .cite-card__divider,
	   .cite-card--claude .cite-card__divider,
	   .cite-card--deepseek .cite-card__divider,
	   .cite-card--overview .cite-card__divider {
		   margin: 6px 0 5px;
	   }
   
	   .cite-card__sources-label,
	   .cite-card--chatgpt .cite-card__sources-label {
		   margin-bottom: 4px;
		   font-size: 7px;
	   }
   
	   .cite-card__tags,
	   .cite-card--chatgpt .cite-card__tags,
	   .cite-card--gemini .cite-card__tags,
	   .cite-card--perplexity .cite-card__tags,
	   .cite-card--copilot .cite-card__tags,
	   .cite-card--claude .cite-card__tags,
	   .cite-card--deepseek .cite-card__tags,
	   .cite-card--overview .cite-card__tags {
		   gap: 3px;
	   }
   
	   .cite-card__tag,
	   .cite-card--chatgpt .cite-card__tag,
	   .cite-card--gemini .cite-card__tag,
	   .cite-card--perplexity .cite-card__tag,
	   .cite-card--copilot .cite-card__tag,
	   .cite-card--claude .cite-card__tag,
	   .cite-card--deepseek .cite-card__tag,
	   .cite-card--overview .cite-card__tag {
		   padding: 2px 5px;
		   font-size: 8px;
		   gap: 3px;
	   }
   
	   .cite-card--chatgpt .cite-card__tag-num,
	   .cite-card--gemini .cite-card__tag-num,
	   .cite-card--perplexity .cite-card__tag-num,
	   .cite-card--copilot .cite-card__tag-num,
	   .cite-card--claude .cite-card__tag-num {
		   width: 12px;
		   height: 12px;
		   font-size: 7px;
	   }
   
	   .hero__globe {
		   width: 420px;
		   opacity: 0.85;
		   transform: translate(-50%, 48%);
	   }
   
	   .hero__globe-canvas {
		   width: 420px;
		   height: 420px;
		   transform: translate(-50%, 48%);
	   }
   
	   .hero__cite-zone {
		   width: 280px;
		   height: 180px;
	   }
   
	   /* Trusted logos */
	   .trusted__container {
		   padding: 24px 14px 24px;
	   }
   
	   .trusted__logos {
		   overflow: hidden;
	   }

	   .trusted__logos-swiper .swiper-slide {
		   padding-inline: 14px;
	   }
   
	   .trusted__logo {
		   max-height: 24px;
	   }
   
	   .trusted__logo--webgear {
		   max-height: 22px;
	   }
   
	   .trusted__logo--veltrix {
		   max-height: 18px;
	   }
   
	   /* Problem */
	   .problem__container {
		   padding: 40px 14px 32px;
	   }
   
	   .problem .eyebrow {
		   margin-bottom: 16px;
	   }
   
	   .problem__title {
		   margin-bottom: 24px;
		   font-size: 28px;
	   }
   
	   .how__title,
	   .why__title,
	   .testimonials__title,
	   .faq__title {
		   font-size: 28px;
	   }
   
	   .problem__copy,
	   .how__subtitle,
	   .why__text {
		   font-size: 16px;
	   }
   
	   /* Features */
	   .features__container {
		   padding: 24px 14px 56px;
	   }
   
	   .features__row {
		   flex-direction: column;
		   align-items: stretch;
		   gap: 20px;
	   }
   
	   .features__copy {
		   width: 100%;
		   max-width: 100%;
		   flex: none;
	   }
   
	   .features__title {
		   font-size: 24px;
	   }
   
	   .features__media {
		   width: 100%;
		   max-width: 100%;
		   flex: none;
	   }
   
	   .question-stack__track {
		   gap: 8px;
		   padding-inline: 4%;
	   }
   
	   .question-stack__item {
		   min-height: 46px;
		   padding: 12px 16px;
		   border-radius: 12px;
	   }
   
	   .question-stack__text {
		   font-size: 13px;
	   }
   
	   /* How it works */
	   .how__container {
		   padding: 56px 14px 56px;
	   }
   
	   .how__row {
		   flex-direction: column;
	   }
   
	   .how__card,
	   .how__card--brand,
	   .how__card--research,
	   .how__card--generating,
	   .how__card--tracking,
	   .how__card--full {
		   width: 100%;
	   }
   
	   .how__card--wide .how__card-media,
	   .how__card--full .how__card-media {
		   width: calc(100% + 48px);
	   }
   
	   .how__card--brand .how__card-media {
		   width: 100%;
		   margin-left: 0;
		   margin-right: 0;
		   margin-top: 0;
		   margin-bottom: 0;
	   }
   
	   .how__card--research .how__card-media {
		   width: calc(100% + 48px);
		   margin-left: -24px;
		   margin-right: -24px;
		   margin-bottom: -24px;
	   }
   
	   .how__card:not(.how__card--wide):not(.how__card--full) .how__card-media img {
		   max-height: none;
	   }
   
	   .how__card-title {
		   font-size: 24px;
	   }
   
	   .how__card--feedback {
		   padding-bottom: 0;
	   }
   
	   .how__card--feedback .how__card-media {
		   width: calc(100% + 48px);
		   margin-left: -24px;
		   margin-right: -24px;
		   margin-bottom: 0;
		   overflow: hidden;
	   }
   
	   .how__card--feedback .how__card-media img {
		   max-width: none;
		   width: 100%;
		   height: auto;
		   margin-top: 0;
		   margin-left: 0;
		   object-fit: contain;
		   object-position: center bottom;
	   }
   
	   /* Why MAX */
	   .why__container {
		   padding: 56px 14px 56px;
		   flex-direction: column;
	   }
	   .why__copy {
		   width: 100%;
		   position: static;
		   max-width: none;
	   }
	   .why__cards {
		   width: 100%;
		   max-width: none;
	   }
	   .why__card-wrap {
		   position: relative;
		   top: auto;
		   z-index: auto;
		   min-height: 0;
		   background: transparent;
		   margin-top: 0;
	   }
   
	   .why__card-ring {
		   --ring-size: 36%;
		   --ring-inset: 1.5%;
		   top: 2px;
	   }
   
	   .why__card-ring--1,
	   .why__card-ring--2,
	   .why__card-ring--3 {
		   left: var(--ring-inset);
		   right: auto;
	   }
   
	   /* Testimonials */
	   .testimonials__container {
		   padding: 56px 14px 56px;
	   }
   
	   .testimonials__accordion {
		   flex-direction: column;
		   height: auto;
		   aspect-ratio: auto;
		   max-height: none;
		   gap: 16px;
	   }
   
	   .testimonials__panel,
	   .testimonials__panel.is-active {
		   flex: none;
		   width: 100%;
		   min-width: 0;
		   height: auto;
		   overflow: visible;
		   cursor: default;
		   transition: none;
	   }
   
	   .testimonials__panel-inner,
	   .testimonials__panel.is-active .testimonials__panel-inner,
	   .testimonials__panel:not(.is-active) .testimonials__panel-inner {
		   flex-direction: column;
		   min-width: 0;
		   width: 100%;
		   height: auto;
	   }
   
	   .testimonials__photo,
	   .testimonials__panel.is-active .testimonials__photo,
	   .testimonials__panel:not(.is-active) .testimonials__photo {
		   flex: none;
		   width: 100%;
		   max-width: none;
		   height: 280px;
		   transition: none;
	   }
   
	   .testimonials__content,
	   .testimonials__panel.is-active .testimonials__content,
	   .testimonials__panel:not(.is-active) .testimonials__content {
		   display: flex;
		   flex: none;
		   width: 100%;
		   padding: 24px;
		   opacity: 1;
		   overflow: visible;
		   visibility: visible;
		   pointer-events: auto;
		   transition: none;
		   row-gap: 26px;
	   }
   
	   .testimonials__quote {
		   font-size: 18px;
	   }
   
	   /* FAQ */
	   .faq__container {
		   padding: 56px 14px 20px;
	   }
   
	   /* Final CTA */
	   .final-cta {
		   min-height: auto;
	   }
   
	   .final-cta__container {
		   padding: 56px 14px 280px;
	   }
   
	   .final-cta__title {
		   font-size: 28px;
	   }
   
	   .final-cta__actions {
		   flex-direction: column;
		   width: 100%;
	   }
   
	   .final-cta__actions .btn {
		   width: 100%;
	   }
   
	   .final-cta__graph {
		   height: 200px;
	   }
   
	   .final-cta__pills {
		   left: 14px;
		   right: 14px;
		   bottom: 40px;
		   width: auto;
		   height: 220px;
		   overflow: hidden;
	   }
   
	   .final-cta__pill {
		   max-width: calc(100% - 8px);
		   white-space: nowrap;
		   overflow: hidden;
		   text-overflow: ellipsis;
	   }
   
	   .final-cta__pill--1 {
		   left: 6%;
		   right: auto;
		   top: 6%;
	   }
   
	   .final-cta__pill--2 {
		   left: auto;
		   right: 8%;
		   top: 24%;
	   }
   
	   .final-cta__pill--3 {
		   left: 10%;
		   right: auto;
		   top: 44%;
	   }
   
	   .final-cta__pill--4 {
		   left: auto;
		   right: 6%;
		   top: 64%;
	   }
   
	   .final-cta__pill--5 {
		   left: 14%;
		   right: auto;
		   top: 82%;
	   }
   
	   /* Footer */
	   .footer__container {
		   padding-inline: 14px;
	   }
   
	   .footer__columns {
		   flex-wrap: wrap;
		   gap: 28px 20px;
	   }
   
	   .footer__column {
		   flex: 1 1 calc(50% - 10px);
	   }
   
	   .footer__bottom {
		   flex-direction: column;
		   align-items: flex-start;
	   }
	   .footer__wordmark {
	       font-size: 27.01vw;
	   }

	   /*.footer__wordmark {*/
		  /* height: clamp(84px, 22vw, 132px);*/
	   /*}*/

	   /*.footer__wordmark-text {*/
		  /* font-size: clamp(68px, 21vw, 120px);*/
	   /*}*/
   }
   
   /* ==========================================================================
   PRICING PAGE
   ========================================================================== */
    .pricing-hero {
    	width: 100%;
    	padding: 0 40px;
    }
    
    .pricing-hero__container {
    	position: relative;
    	display: flex;
    	flex-wrap: wrap;
    	align-items: flex-start;
    	justify-content: space-between;
    	gap: 40px;
    	width: 100%;
    	max-width: 1440px;
    	margin-inline: auto;
    	padding: 50px 64px 70px;
    	border-left: 1px dashed #dadada;
    	border-right: 1px dashed #dadada;
    	border-bottom: 1px dashed #dadada;
    }
    
    .pricing-hero__container::before,
    .pricing-hero__container::after {
    	content: "";
    	position: absolute;
    	bottom: -5px;
    	left: -5px;
    	z-index: 5;
    	width: 10px;
    	height: 10px;
    	border: 1px solid #dadada;
    	background: #ffffff;
    	outline: 2px solid #ffffff;
    }
    
    .pricing-hero__container::after {
    	right: -5px;
    	left: auto;
    }
    .pricing-hero__left {
    	width: 50%;
    	max-width: 520px;
    	display: flex;
    	flex-direction: column;
    	gap: 24px;
    	padding-top: 24px;
    }
    
    .pricing-hero__title {
    	font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    	font-weight: 400;
    	font-size: 48px;
    	line-height: 1.21;
    	color: #000;
    	margin: 0;
    	letter-spacing: -0.5px;
    }
    
    .pricing-hero__desc {
    	font-family: "Geist", sans-serif;
    	font-weight: 300;
    	font-size: 16px;
    	line-height: 1.5;
    	color: rgba(0, 0, 0, 0.6);
    	margin: 0;
    	max-width: 500px;
    }
    .pricing-tcard-wrap {
    	width: 100%;
    }
    
    .pricing-tcard {
    	display: flex !important;
    	align-items: stretch;
    	background: #fafafa;
    	border: 1px solid #dadada;
    	overflow: hidden;
    	min-height: 132px;
    	padding: 20px;
    	column-gap: 20px;
    }
    
    .pricing-tcard__photo-col {
    	width: 86px;
    	flex-shrink: 0;
    	overflow: hidden;
    	position: relative;
    }
    
    .pricing-tcard__photo {
    	width: 100%;
    	height: 100%;
    	object-fit: cover;
    	object-position: center top;
    	filter: grayscale(100%);
    	display: block;
    }
    
    .pricing-tcard__content {
    	flex: 1;
    	display: flex;
    	flex-direction: column;
    	justify-content: space-between;
    }
    
    .pricing-tcard__quote {
    	font-family: "Geist", sans-serif;
    	font-weight: 300;
    	font-size: 15px;
    	line-height: 1.53;
    	color: rgba(0, 0, 0, 0.78);
    	margin: 0 0 12px;
    	font-style: normal;
    }
    
    .pricing-tcard__author {
    	display: flex;
    	align-items: center;
    	gap: 8px;
    	flex-wrap: wrap;
    }
    
    .pricing-tcard__name {
    	font-family: "Space Grotesk", sans-serif;
    	font-weight: 700;
    	font-size: 12.9px;
    	color: #0e1201;
    	letter-spacing: 0.4px;
    }
    
    .pricing-tcard__dot {
    	width: 3px;
    	height: 3px;
    	border-radius: 50%;
    	background: #b0b0b0;
    	flex-shrink: 0;
    	display: inline-block;
    }
    
    .pricing-tcard__role {
    	font-family: "Geist", sans-serif;
    	font-weight: 300;
    	font-size: 13px;
    	color: #64676d;
    	letter-spacing: 0.2px;
    }
    
    .pricing-logos-outer {
    	position: relative;
    	overflow: hidden;
    	height: 40px;
    }
    
    .pricing-logos-carousel .slick-track {
    	display: flex !important;
    	align-items: center;
    }
    
    .pricing-logos-slide {
    	display: flex !important;
    	align-items: center;
    	justify-content: center;
    	padding: 0 24px;
    }
    
    .pricing-logos-slide img {
    	max-height: 32px;
    	width: auto;
    	max-width: 140px;
    	object-fit: contain;
    	opacity: 0.65;
    	display: block;
    }
    
    .pricing-logos-fade {
    	position: absolute;
    	top: 0;
    	bottom: 0;
    	width: 80px;
    	z-index: 2;
    	pointer-events: none;
    }
    
    .pricing-logos-fade--l {
    	left: 0;
    	background: linear-gradient(to right, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0) 100%);
    }
    
    .pricing-logos-fade--r {
    	right: 0;
    	background: linear-gradient(to left, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0) 100%);
    }
    .pricing-hero__right {
    	width: calc(50% - 40px);
    }
    
    .pricing-card {
    	border: 1px solid #dadada;
    	background: #fff;
    	box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    	display: flex;
    	flex-direction: column;
    }
    
    /* "Starts at" label + Annual/Monthly toggle */
    .pricing-card__top {
    	display: flex;
    	align-items: center;
    	justify-content: space-between;
    	padding: 28px 28px 0;
    }
    
    .pricing-card__label {
    	font-family: "Geist", sans-serif;
    	font-weight: 400;
    	font-size: 14px;
    	text-transform: uppercase;
    	letter-spacing: 3.08px;
    	color: #646362;
    }
    
    /* Toggle button group */
    .pricing-card__toggle {
    	display: flex;
    	align-items: stretch;
    	overflow: hidden;
    	height: 34px;
    }
    
    .pricing-card__btn {
    	font-family: "Geist", sans-serif;
    	font-weight: 400;
    	font-size: 13px;
    	color: #646362;
    	background: #efefef;
    	border: none;
    	padding: 0 14px;
    	cursor: pointer;
    	letter-spacing: 0.3px;
    	transition:
    		background 0.15s,
    		color 0.15s;
    	white-space: nowrap;
    	height: 100%;
    }
    
    .pricing-card__btn--active {
    	background: #0e1201;
    	color: #fff;
    }
    
    .pricing-card__btn:focus-visible {
    	outline: 2px solid #0e1201;
    	outline-offset: -2px;
    }
    
    .pricing-card__price-row {
    	display: flex;
    	align-items: baseline;
    	gap: 2px;
    	padding: 12px 28px 0;
    }
    
    .pricing-card__price {
    	font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    	font-weight: 500;
    	font-size: 60px;
    	line-height: 64px;
    	color: #000;
    	letter-spacing: -2px;
    	transition: opacity 0.15s;
    }
    
    .pricing-card__per {
    	font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    	font-weight: 500;
    	font-size: 20px;
    	color: #646362;
    	margin-left: 4px;
    }
    
    .pricing-card__billing {
    	font-family: "Geist", sans-serif;
    	font-weight: 300;
    	font-size: 14px;
    	color: #64676d;
    	margin: 8px 28px 24px;
    	line-height: 1.43;
    	transition: opacity 0.15s;
    }
    
    .pricing-card__divider {
    	border: none;
    	border-top: 1px dashed #dadada;
    	margin: 0 28px;
    }
    
    .pricing-card__features {
    	list-style: none;
    	padding: 24px 28px;
    	margin: 0;
    	display: flex;
    	flex-direction: column;
    	gap: 14px;
    }
    
    .pricing-card__feature {
    	display: flex;
    	align-items: flex-start;
    	gap: 10px;
    	font-family: "Geist", sans-serif;
    	font-size: 16px;
    	line-height: 1.375;
    	color: #0e1201;
    }
    
    .pricing-card__check {
    	width: 18px;
    	height: 18px;
    	flex-shrink: 0;
    	margin-top: 2px;
    	object-fit: contain;
    }
    
    .pricing-card__feature strong {
    	font-weight: 500;
    }
    
    .pricing-card__feature-light {
    	font-weight: 300;
    	color: rgba(0, 0, 0, 0.7);
    }
    
    .pricing-card__cta-wrap {
    	padding: 0 28px 14px;
    	display: flex;
    	flex-direction: column;
    	align-items: stretch;
    	gap: 14px;
    }
    
    .pricing-card__cta {
    	display: flex;
    	align-items: center;
    	justify-content: center;
    	gap: 10px;
    	width: 100%;
    	background: #060606;
    	color: #fff !important;
    	height: 55px;
    	font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    	font-size: 16px;
    	font-weight: 400;
    	text-decoration: none !important;
    	border-radius: 0;
    	box-shadow: 0px 1px 1px rgba(16, 24, 40, 0.05);
    	transition: opacity 0.15s;
    }
    
    .pricing-card__cta:hover {
    	opacity: 0.88;
    }
    
    
    .pricing-card__footnote {
    	font-family: "Geist", sans-serif;
    	font-weight: 300;
    	font-size: 13px;
    	color: #64676d;
    	text-align: center;
    	margin: 0;
    	line-height: 1.46;
    	padding: 0 28px 28px;
    }
    
    .pricing-feats {
    	width: 100%;
    	padding: 0 40px;
    }
    
    .pricing-feats__inner {
    	position: relative;
    	display: flex;
    	align-items: stretch;
    	width: 100%;
    	max-width: 1440px;
    	margin-inline: auto;
    	border-left: 1px dashed #dadada;
    	border-right: 1px dashed #dadada;
    	border-bottom: 1px dashed #dadada;
    }
    
    .pricing-feats__inner::before,
    .pricing-feats__inner::after {
    	content: "";
    	position: absolute;
    	bottom: -5px;
    	left: -5px;
    	z-index: 5;
    	width: 10px;
    	height: 10px;
    	border: 1px solid #dadada;
    	background: #ffffff;
    	outline: 2px solid #ffffff;
    }
    
    .pricing-feats__inner::after {
    	right: -5px;
    	left: auto;
    }
    
    .pricing-feats__item {
    	flex: 1;
    	padding: 20px 24px;
    	display: flex;
    	flex-direction: column;
    	gap: 6px;
    }
    
    .pricing-feats__item + .pricing-feats__item {
    	border-left: 1px dashed #dadada;
    }
    
    .pricing-feats__title {
    	font-family: "Neue Haas Grotesk Display Pro", sans-serif;
    	font-weight: 400;
    	font-size: 18px;
    	line-height: 1.44;
    	color: #0e1201;
    	margin: 0;
    }
    
    .pricing-feats__desc {
    	font-family: "Geist", sans-serif;
    	font-weight: 300;
    	font-size: 14px;
    	line-height: 1.43;
    	color: #64676d;
    	margin: 0;
    }
    
    @media (max-width: 1024px) {
    	.pricing-hero,
    	.pricing-feats {
    		padding: 0 20px;
    	}
    
    	.pricing-hero__container {
    		padding: 50px 60px 70px;
    		flex-direction: column;
    	}
    
    	.pricing-hero__left {
    		width: 100%;
    		max-width: 100%;
    		padding-top: 0;
    	}
    
    	.pricing-hero__right {
    		width: 100%;
    	}
    
    	.pricing-feats__inner {
    		flex-wrap: wrap;
    	}
    
    	.pricing-feats__item {
    		flex: 1 1 50%;
    	}
    
    	.pricing-feats__item:nth-child(n + 3) {
    		border-top: 1px dashed #dadada;
    	}
    
    	.pricing-feats__item:nth-child(3) {
    		border-left: none;
    	}
    }
    
    @media (max-width: 768px) {
    	.pricing-hero,
    	.pricing-feats {
    		padding: 0 5px;
    	}
    
    	.pricing-hero__container {
    		padding: 40px 14px 50px;
    	}
    
    	.pricing-hero__left {
    		max-width: 100%;
    	}
    
    	.pricing-hero__right {
    		flex: 0 0 auto;
    		min-width: auto;
    		width: 100%;
    	}
    
    	.pricing-hero__title {
    		font-size: 32px;
    	}
    
    	.pricing-card__top {
    		padding: 20px 16px 0;
    	}
    	.pricing-card__price {
    		font-size: 48px;
    	}
    	.pricing-card__price-row {
    		padding: 12px 16px 0;
    	}
    	.pricing-card__billing {
    		margin: 8px 16px 24px;
    	}
    	.pricing-card__features {
    		padding: 24px 16px;
    	}
    	.pricing-card__cta-wrap {
    		padding: 0 16px;
    	}
    
    	.pricing-feats__item {
    		flex: 1 1 100%;
    		border-left: none !important;
    	}
    
    	.pricing-feats__item + .pricing-feats__item {
    		border-top: 1px dashed #dadada;
    	}
    }
