/* Base styles + header tokens from Figma */

:root {
  /* Colors */
  --color-text-title: #131313;
  /* Darkened for WCAG AA (~4.5:1) with white / light backgrounds */
  --color-brand: #057a44;
  --color-brand-dark: #046b3b;
  --color-brand-shadow: rgba(5, 122, 68, 0.2);
  --cta-grid:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 48px 48px;
  --color-btn-secondary-bg: #ededed;
  --color-icon-stroke: #121217;
  --color-white: #ffffff;
  --color-text: #1a1a1a;
  --color-body-text: #6b6a6a;
  --color-text-muted: #5c5c5c;
  --color-bg: #ffffff;
  --color-bg-muted: rgba(237, 237, 237, 1);
  --color-border: #e2e8e4;

  /* Typography — Body/Text-sm (nav) */
  --text-sm-size: 14px;
  --text-sm-line: 1.4;
  --text-sm-weight: 400;

  /* Typography — button label */
  --btn-font-family: "Inter", system-ui, sans-serif;
  --btn-font-size: 14px;
  --btn-font-weight: 600;
  --btn-line-height: 1.5;

  /* Button shell (Small) */
  --btn-radius: 6px;
  --btn-padding-y: 8px;
  --btn-padding-x: 12px;
  --btn-gap: 8px;
  --btn-shadow-primary: 0 0 20px 4px var(--color-brand-shadow);

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --container-pad: clamp(1rem, 3vw, 2.5rem);
  --container-width: none;
  --radius: 0.5rem;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --header-bar-radius: 9999px;
  --header-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);

  /* Footer */
  --color-footer-bg: #121212;
  --color-footer-body-light: rgba(255, 255, 255, 0.7);
  --color-footer-white: #ffffff;
  --footer-radius: 1.5rem;
  --text-xs-size: 12px;
  --text-xs-line: 18px;
  --footer-heading-size: 16px;
  --footer-heading-line: 24px;

  /* Keyboard focus ring (PageSpeed / WCAG) */
  --focus-ring-color: var(--color-brand);
  --focus-ring-offset: 2px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 20px;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg-muted);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-brand);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  padding-inline: var(--container-pad);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  z-index: 1000;
  background: var(--color-brand);
  color: #fff;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  left: 1rem;
  top: 1rem;
  padding: 0.5rem 1rem;
  white-space: normal;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Visible focus for keyboard users; mouse clicks stay clean */
:where(
  a,
  button,
  input,
  select,
  textarea,
  summary,
  [tabindex]:not([tabindex="-1"])
):focus-visible {
  outline: 2px solid var(--focus-ring-color);
  outline-offset: var(--focus-ring-offset);
}

.btn--primary:focus-visible,
.btn--white:focus-visible,
.stats__ask:focus-visible {
  outline-color: #fff;
}

.site-header__toggle:focus-visible,
.site-nav__link:focus-visible {
  outline-offset: 3px;
}

.site-nav__submenu a:focus-visible {
  color: var(--color-brand);
  background: var(--color-bg-muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html.is-nav-open {
  overflow: hidden;
}

/* Header */

.site-header {
  position: sticky;
  top: 20px;
  z-index: 100;
  padding: 0;
  background: transparent;
}

.site-header__inner {
  width: 100%;
  max-width: var(--container-width);
  padding-inline: var(--container-pad);
  margin-inline: auto;
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
  padding: 0.875rem 1.5rem 0.875rem 1.75rem;
  background: var(--color-white);
  border-radius: var(--header-bar-radius);
  box-shadow: var(--header-shadow);
}

.site-logo {
  flex-shrink: 0;
  text-decoration: none;
}

.site-logo img {
  height: 2.25rem;
  width: auto;
}

.site-header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: var(--btn-radius);
  background: transparent;
  color: var(--color-brand);
  cursor: pointer;
}

.site-header__toggle-icon--close {
  display: none;
}

.site-header.is-nav-open .site-header__toggle-icon--open {
  display: none;
}

.site-header.is-nav-open .site-header__toggle-icon--close {
  display: block;
}

.btn__label--mobile {
  display: none;
}

.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 0;
}

.site-nav__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  border: 0;
  background: none;
  font-family: var(--font-sans);
  font-size: var(--text-sm-size);
  font-weight: var(--text-sm-weight);
  line-height: var(--text-sm-line);
  color: var(--color-text-title);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.site-nav__link:hover {
  color: var(--color-brand);
}

.site-nav__chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.site-nav__item--open .site-nav__chevron {
  transform: rotate(180deg);
}

.site-nav__item--open > .site-nav__link {
  color: var(--color-brand);
}

.site-nav__submenu {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  z-index: 110;
  min-width: 12rem;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--btn-radius);
  box-shadow: var(--shadow);
}

.site-nav__item--open .site-nav__submenu {
  display: block;
}

.site-nav__submenu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: var(--text-sm-size);
  font-weight: var(--text-sm-weight);
  line-height: var(--text-sm-line);
  color: var(--color-text-title);
  text-decoration: none;
  white-space: nowrap;
}

.site-nav__submenu a:hover {
  color: var(--color-brand);
  background: var(--color-bg-muted);
}

.site-header__actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 0.5rem;
}

/* Hero / homepage section styles live in home.css */

/* Footer */

.site-footer {
  padding: 0;
}

.site-footer__panel {
  padding: 2.5rem 2.5rem 1.75rem;
  background: var(--color-footer-bg);
  border-radius: var(--footer-radius);
  color: var(--color-footer-body-light);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(16rem, 1fr) minmax(0, 1fr);
  column-gap: 2rem;
  row-gap: 2rem;
  align-items: start;
}

.site-footer__links {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  column-gap: 3rem;
  row-gap: 2rem;
  align-items: start;
  justify-content: start; /* start of right half ≈ page center */
  min-width: 0;
}

.site-footer__logo {
  display: inline-block;
  text-decoration: none;
}

.site-footer__logo img {
  width: 140px;
  height: 56px;
}

.site-footer__tagline {
  margin: 1rem 0 0;
  /* ~2 lines for “Private-company financial intelligence for better decisions.” */
  max-width: 20rem;
  font-size: var(--text-sm-size);
  font-weight: var(--text-sm-weight);
  line-height: var(--text-sm-line);
  color: var(--color-footer-body-light);
}

.site-footer__social {
  display: flex;
  gap: 0.65rem;
  margin: 1rem 0 0;
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-footer-white);
  text-decoration: none;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  color: var(--color-footer-white);
}

.site-footer__heading {
  margin: 0 0 1rem;
  font-size: var(--footer-heading-size);
  font-weight: 600;
  line-height: var(--footer-heading-line);
  letter-spacing: 0;
  text-transform: uppercase;
  color: #6ee7a8;
}

.site-footer__toggle {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  text-transform: inherit;
  cursor: pointer;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.site-footer__icon,
.site-footer__chevron {
  display: none;
}

.site-footer__toggle-label {
  display: block;
}

.site-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__list li + li {
  margin-top: 0.75rem;
}

.site-footer__list a {
  font-size: var(--text-sm-size);
  font-weight: var(--text-sm-weight);
  line-height: var(--text-sm-line);
  color: var(--color-footer-body-light);
  text-decoration: none;
}

.site-footer__list a:hover {
  color: var(--color-footer-white);
}

.site-footer__list--contact,
.site-footer__list--contact a {
  color: var(--color-footer-white);
  font-size: var(--text-sm-size);
  font-weight: var(--text-sm-weight);
  line-height: var(--text-sm-line);
}

.site-footer__col--contact {
  justify-self: start;
  min-width: 0;
  max-width: 100%;
}

.site-footer__list--contact li {
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.site-footer__list--contact a:hover {
  color: var(--color-brand);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__copyright {
  margin: 0;
  font-size: var(--text-xs-size);
  font-weight: 400;
  line-height: var(--text-xs-line);
  color: var(--color-footer-body-light);
}

.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}

.site-footer__legal-links a {
  font-size: var(--text-xs-size);
  font-weight: 400;
  line-height: var(--text-xs-line);
  color: var(--color-footer-body-light);
  text-decoration: none;
}

.site-footer__legal-links a:hover {
  color: var(--color-footer-white);
}

@media (max-width: 48rem) {
  .site-footer {
    padding: 0;
  }

  .site-footer__panel {
    padding: 1.25rem 1.25rem 1rem;
    border-radius: var(--footer-radius, 1.5rem);
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }

  .site-footer__links {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 0;
    width: 100%;
    justify-content: stretch;
    text-align: left;
  }

  .site-footer.is-accordion .site-footer__links {
    margin-top: 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-footer.is-accordion .site-footer__col {
    grid-column: 1 / -1;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .site-footer.is-accordion .site-footer__col:last-child {
    border-bottom: 0;
  }

  .site-footer.is-accordion .site-footer__heading {
    margin: 0;
    text-transform: none;
    color: #fff;
  }

  .site-footer.is-accordion .site-footer__toggle {
    min-height: 48px;
    gap: 0.75rem;
    padding: 0.7rem 0;
  }

  .site-footer.is-accordion .site-footer__icon,
  .site-footer.is-accordion .site-footer__chevron {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
  }

  .site-footer.is-accordion .site-footer__icon {
    width: 20px;
    height: 20px;
    color: #22c55e;
  }

  .site-footer.is-accordion .site-footer__toggle-label {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: #fff;
  }

  .site-footer.is-accordion .site-footer__chevron {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.85);
    transition: transform 0.18s ease;
  }

  .site-footer.is-accordion .site-footer__col.is-open .site-footer__chevron {
    transform: rotate(180deg);
  }

  .site-footer.is-accordion .site-footer__list {
    display: none !important;
    padding: 0 0 0.85rem 2.05rem;
  }

  .site-footer.is-accordion .site-footer__col.is-open .site-footer__list {
    display: block !important;
  }

  .site-footer.is-accordion .site-footer__list--contact {
    padding-left: 0;
    text-align: left;
  }

  .site-footer.is-accordion .site-footer__list--contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    text-align: left;
  }

  .site-footer.is-accordion .site-footer__list--contact li::before {
    content: "";
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    background-color: #fff;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
  }

  .site-footer.is-accordion .site-footer__list--contact li:nth-child(1)::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 21s7-6.2 7-11.2A7 7 0 1 0 5 9.8C5 14.8 12 21 12 21z' stroke='black' stroke-width='1.8'/%3E%3Ccircle cx='12' cy='9.8' r='2.2' stroke='black' stroke-width='1.8'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 21s7-6.2 7-11.2A7 7 0 1 0 5 9.8C5 14.8 12 21 12 21z' stroke='black' stroke-width='1.8'/%3E%3Ccircle cx='12' cy='9.8' r='2.2' stroke='black' stroke-width='1.8'/%3E%3C/svg%3E");
  }

  .site-footer.is-accordion .site-footer__list--contact li:nth-child(2)::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6.5 3.8h3.2l1.2 3-2 1.2a12.5 12.5 0 0 0 6.1 6.1l1.2-2 3 1.2v3.2c0 .7-.6 1.3-1.3 1.3C9.7 17.8 6.2 14.3 6.2 5.1c0-.7.6-1.3 1.3-1.3z' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6.5 3.8h3.2l1.2 3-2 1.2a12.5 12.5 0 0 0 6.1 6.1l1.2-2 3 1.2v3.2c0 .7-.6 1.3-1.3 1.3C9.7 17.8 6.2 14.3 6.2 5.1c0-.7.6-1.3 1.3-1.3z' stroke='black' stroke-width='1.8' stroke-linejoin='round'/%3E%3C/svg%3E");
  }

  .site-footer.is-accordion .site-footer__list--contact li:nth-child(3)::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='3.5' y='5.5' width='17' height='13' rx='2' stroke='black' stroke-width='1.8'/%3E%3Cpath d='m4.5 7.2 7.5 5.5 7.5-5.5' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='3.5' y='5.5' width='17' height='13' rx='2' stroke='black' stroke-width='1.8'/%3E%3Cpath d='m4.5 7.2 7.5 5.5 7.5-5.5' stroke='black' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  }

  .site-footer__brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .site-footer__logo img {
    margin-inline: auto;
  }

  .site-footer__tagline {
    width: 100%;
    max-width: 326px;
    margin: 0.5rem auto 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
  }

  .site-footer__social {
    width: 100%;
    margin-top: 0.5rem;
    justify-content: flex-start;
  }

  .site-footer__heading {
    margin-bottom: 0.5rem;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-transform: uppercase;
    color: rgba(6, 147, 82, 1);
    text-align: left;
  }

  .site-footer__list li + li {
    margin-top: 0.4rem;
  }

  .site-footer__list,
  .site-footer__list a {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
  }

  .site-footer__list a:hover {
    color: rgba(255, 255, 255, 1);
  }

  .site-footer__list--contact,
  .site-footer__list--contact a {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 1);
  }

  .site-footer__col--contact {
    grid-column: 1 / -1;
    min-width: 0;
    max-width: none;
    width: 100%;
    margin-inline: 0;
    justify-self: stretch;
    text-align: left;
  }

  .site-footer__copyright,
  .site-footer__legal-links a {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.7);
  }

  .site-footer__legal-links a {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0.75rem 0;
  }

  .site-footer__legal-links a:hover {
    color: rgba(255, 255, 255, 1);
  }

  .site-footer__legal {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    margin-top: 1rem;
    padding-top: 0.65rem;
  }

  .site-footer__copyright {
    text-align: left;
  }

  .site-footer__legal-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
  }
}

/*
  Full horizontal nav needs ~1280px (logo + 7 links + CTAs).
  Keep the hamburger until then so Blog / Sign In / Trial never overlap.
*/
@media (min-width: 80rem) and (max-width: 89.99rem) {
  .site-header__bar {
    gap: 0.75rem;
    padding: 0.75rem 1.15rem 0.75rem 1.25rem;
  }

  .site-nav__list {
    gap: 0.85rem;
  }

  .site-nav__link {
    font-size: 0.8125rem;
  }

  .site-header__actions {
    gap: 0.375rem;
  }

  .site-header__actions .btn {
    padding-inline: 0.65rem;
    font-size: 0.8125rem;
  }
}

@media (max-width: 79.99rem) {
  .site-header__toggle {
    display: inline-flex;
  }

  .btn__label--desktop {
    display: none;
  }

  .btn__label--mobile {
    display: inline;
  }

  .site-nav,
  .site-header__actions {
    display: none;
  }

  .site-header.is-nav-open {
    z-index: 200;
  }

  .site-header.is-nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background: rgba(18, 18, 23, 0.45);
  }

  .site-header.is-nav-open .site-header__inner {
    width: min(100% - 1.5rem, 28rem);
    margin-inline: auto;
  }

  .site-header.is-nav-open .site-header__bar {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0;
    min-height: 0;
    padding: 1rem 1.25rem 1.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  }

  .site-header.is-nav-open .site-logo {
    grid-column: 1;
    grid-row: 1;
  }

  .site-header.is-nav-open .site-header__toggle {
    grid-column: 2;
    grid-row: 1;
    margin-left: 0;
  }

  .site-header.is-nav-open .site-nav,
  .site-header.is-nav-open .site-header__actions {
    display: flex;
    width: 100%;
    grid-column: 1 / -1;
  }

  .site-header.is-nav-open .site-nav {
    order: unset;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e8e8e8;
  }

  .site-header.is-nav-open .site-header__actions {
    order: unset;
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e8e8e8;
  }

  .site-header.is-nav-open .site-header__actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 2.75rem;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    width: 100%;
  }

  .site-nav__link {
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
  }

  .site-nav__chevron {
    color: var(--color-icon-stroke);
  }

  .site-nav__item--open > .site-nav__link,
  .site-nav__item--open .site-nav__chevron {
    color: var(--color-brand);
  }

  .site-nav__submenu {
    position: static;
    min-width: 0;
    width: 100%;
    margin: 0.875rem 0 0;
    padding: 0 0 0 0.25rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav__submenu li + li {
    margin-top: 0.875rem;
  }

  .site-nav__submenu a {
    padding: 0;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--color-text-title);
    background: transparent;
  }

  .site-nav__submenu a:hover {
    background: transparent;
    color: var(--color-brand);
  }
}

/* Buttons, cards, tabs — component styles */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--btn-gap);
  padding: var(--btn-padding-y) var(--btn-padding-x);
  border: 1px solid transparent;
  border-radius: var(--btn-radius);
  font-family: var(--btn-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  line-height: var(--btn-line-height);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: var(--color-brand);
  color: var(--color-white);
  box-shadow: var(--btn-shadow-primary);
}

.btn--primary:hover {
  background: var(--color-brand-dark);
  color: var(--color-white);
}

.btn--primary .btn__icon {
  flex-shrink: 0;
}

.btn--secondary {
  background: var(--color-btn-secondary-bg);
  color: var(--color-brand);
}

.btn--secondary:hover {
  background: #e2e2e2;
  color: var(--color-brand-dark);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn--ghost:hover {
  background: var(--color-bg-muted);
}

.btn--lg {
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.btn--lg .btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn--white {
  background: #fff;
  color: var(--color-text-title);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  box-shadow: none;
}

.btn--white .btn__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  color: var(--color-brand);
}

.btn--white .btn__icon svg {
  display: block;
  width: 14.67px;
  height: 12px;
}

.btn--white:hover {
  background: #f3f3f3;
  color: var(--color-text-title);
}

.btn--white:hover .btn__icon {
  color: var(--color-brand-dark);
}

.btn--outline-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(236, 236, 236, 0.24);
  backdrop-filter: blur(60px);
  -webkit-backdrop-filter: blur(60px);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(236, 236, 236, 0.36);
  color: #fff;
}

/* Shot frame (screenshot / product preview chrome) */

.shot-frame {
  min-width: 0;
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(236, 236, 236, 1);
  border-radius: 20px;
  background: rgba(244, 246, 245, 1);
  box-shadow: 0 20px 45px 0 rgba(0, 0, 0, 0.06);
}

.shot-frame__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  vertical-align: top;
}

/* Text link (Figma: buttons/link) */

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--color-brand);
  text-decoration: none;
}

.text-link__arrow {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  padding: 3px 2px;
  box-sizing: border-box;
}

.text-link__arrow svg {
  display: block;
  width: 11px;
  height: 10px;
}

.text-link:hover {
  text-decoration: underline;
}

/* Section lead (Figma: Body / Text-base) */

.section-lead {
  margin: 0;
  max-width: 531px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--color-body-text);
}

.section-lead strong {
  font-weight: 600;
  color: var(--color-text-title);
}

.section-lead--center {
  max-width: 713px;
  margin-inline: auto;
  text-align: center;
}

/* Section title (Figma: Headings / Text-3xl + brand accent) */

.section-title {
  margin: 0 0 1rem;
  max-width: 757px;
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 2.5vw, 36px);
  font-weight: 600;
  line-height: 1.111; /* 40 / 36 */
  letter-spacing: -0.06em;
  color: var(--color-text-title);
}

.section-title__accent {
  color: var(--color-brand);
}

.section-title--center {
  max-width: 712px;
  margin-inline: auto;
  text-align: center;
}

/* Section badge (Figma: green pill label) */

.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 1rem;
  padding: 4px 10px;
  border: 1px solid rgba(5, 122, 68, 0.22);
  border-radius: 30px;
  background: rgba(5, 122, 68, 0.08);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-brand);
}

.section-badge--dot::before {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-brand);
}

.section-badge--dot {
  padding: 8px 16px;
  font-size: var(--text-sm-size);
  font-weight: var(--text-sm-weight);
  line-height: var(--text-sm-line);
  text-transform: none;
  color: var(--color-text-title);
  flex-wrap: nowrap;
  white-space: nowrap;
}

.section-badge--dot span {
  color: var(--color-brand);
}

.section-badge--on-brand {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.35);
  font-family: var(--font-sans); /* Typhography/Font family/Body */
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  line-height: 20px;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

/* Cards */

.card-grid {
  display: grid;
  gap: 1.5rem;
}

.card {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
}

.card__link {
  font-weight: 600;
  text-decoration: none;
}

.card__link:hover {
  text-decoration: underline;
}

/* Tabs */

.tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tabs__tab {
  padding: 0.625rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  font: inherit;
  cursor: pointer;
}

.tabs__tab.is-active {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: #fff;
}

.tabs__panel {
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.tabs__panel:not(.is-active) {
  display: none;
}

@media (min-width: 48rem) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Homepage sections — draft layout from design screens */

/* Alias kept for non-heading brand accents */
.text-brand {
  color: var(--color-brand);
}

/* Figma page frame: vertical stack, 12px between sections */
#main {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.section {
  padding: 0;
}

.section-head {
  margin-bottom: 2.5rem;
}

.section-head--center {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.hero__title,
.final-cta__panel h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-title);
  letter-spacing: -0.02em;
}

.panel {
  padding: 2rem;
  background: #fff;
  border-radius: 1.5rem;
}

.panel--split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 64rem) {
  .panel--split {
    grid-template-columns: 1fr 1.1fr;
  }

  .industry .panel--split {
    grid-template-columns: 1fr 1.15fr;
  }

  .panel--import {
    grid-template-columns: 0.95fr 1.21fr;
    align-items: center;
  }
}

/* Hero */

.hero {
  padding: 0;
}

/* Mobile: content card and media are separate sections (12px like #main) */
.hero__layout {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__panel {
  display: grid;
  gap: 0;
  padding: 2rem;
  background: #fff;
  border-radius: 1.5rem;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__content .btn {
  width: 100%;
  justify-content: center;
}

.hero__media {
  width: 100%;
  min-width: 0;
}

/* Mobile only: prevent horizontal page shift */
@media (max-width: 39.99rem) {
  html,
  body {
    overflow-x: clip;
  }

  body {
    padding: 12px;
  }

  .container,
  .site-header__inner {
    padding-inline: 0;
  }

  .hero__layout,
  .hero__panel,
  .hero__content {
    min-width: 0;
    max-width: 100%;
  }

  .hero__panel {
    gap: 0;
    padding: 1.25rem 0.75rem;
  }

  .hero__content .btn {
    max-width: 100%;
    min-width: 0;
    white-space: nowrap;
    height: auto;
    min-height: 48px;
    text-align: center;
  }

  .hero__content .section-badge {
    width: max-content;
    max-width: 100%;
    box-sizing: border-box;
    flex-wrap: nowrap;
    white-space: nowrap;
    justify-content: flex-start;
    align-self: center;
    gap: 5px;
    margin-bottom: 0.85rem;
    font-size: clamp(0.6875rem, 3vw, 0.8125rem);
    line-height: 1.35;
    padding: 5px 8px;
  }

  .hero__content .section-badge--dot::before {
    width: 8px;
    height: 8px;
  }

  .hero__links {
    flex-wrap: wrap;
    row-gap: 0.75rem;
  }

  .cap-list li {
    white-space: normal;
  }

  .audience-card__tags span {
    white-space: normal;
  }

  .site-footer__list--contact li {
    white-space: normal;
  }
}

/*
  Desktop (64rem+): intro + mock side by side (equal row height).
*/
@media (min-width: 64rem) {
  .hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 1.5rem 1.25rem;
    padding: 2rem;
    background: #fff;
    border-radius: 1.5rem;
    align-items: stretch;
    overflow: hidden;
  }

  .hero__panel {
    min-width: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
  }

  .hero__content {
    align-items: flex-start;
    text-align: left;
    min-width: 0;
  }

  .hero__content .btn {
    width: auto;
    max-width: 100%;
    /* Long CTA must wrap when the copy column is mid-width */
    white-space: normal;
    height: auto;
    min-height: 48px;
    text-align: left;
  }

  .hero__media {
    display: flex;
    align-self: stretch;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 0;
  }

  .hero-mock {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 100%;
    min-height: 100%;
    aspect-ratio: auto;
  }
}

/*
  Mid desktop (64–90rem): keep a readable copy column.
  The old 80rem rule used minmax(28rem, 47.3125rem) for the mock, which
  starved the headline (~120–280px) on 1280–1440px / scaled displays.
*/
@media (min-width: 64rem) and (max-width: 89.99rem) {
  .hero__layout {
    grid-template-columns: minmax(18rem, 1fr) minmax(0, 1.15fr);
  }
}

/* Wide desktop: Figma-scale mock only when both columns fit */
@media (min-width: 90rem) {
  .hero__layout {
    grid-template-columns: minmax(22rem, 1fr) minmax(0, 47.3125rem);
    gap: 2rem;
    padding: 2.5rem;
  }

  .hero-mock {
    max-width: 47.3125rem;
    min-height: 33.5rem; /* Figma 536px floor; still stretches with row */
  }
}

.hero__title {
  max-width: 531px;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.06em;
  color: var(--color-text-title);
}

@media (min-width: 64rem) and (max-width: 89.99rem) {
  .hero__title {
    font-size: clamp(2rem, 3.2vw, 2.75rem);
  }
}

.hero__lead {
  margin: 0 0 1.5rem;
  max-width: 531px;
  font-size: var(--text-sm-size);
  font-weight: var(--text-sm-weight);
  line-height: 1.5;
  color: var(--color-body-text);
}

.hero__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 1.25rem;
}

@media (min-width: 64rem) {
  .hero__links {
    justify-content: flex-start;
  }
}

.hero__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 2px 0;
  font-size: var(--text-sm-size);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--color-brand);
  text-decoration: none;
}

.hero__links a + a {
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid var(--color-border);
}

.hero__links a:hover {
  color: var(--color-brand-dark);
}

.hero-mock {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 47.3125rem; /* Figma Widget 2: 757px */
  aspect-ratio: 757 / 536;
  min-height: 18rem;
  margin-inline: auto;
  padding: 1rem;
  border-radius: 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(180deg, rgba(2, 30, 19, 1) 0%, rgba(3, 17, 13, 1) 100%);
  color: #fff;
}

.hero-mock__tabs {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}

.hero-mock__tabs::-webkit-scrollbar {
  display: none;
}

.hero-mock__tabs button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 33px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.hero-mock__tabs button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-mock__tabs button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.hero-mock__tabs .is-active {
  border-color: rgba(255, 255, 255, 0.08);
  background: #fff;
  color: #131313;
}

.hero-mock__tabs .is-active:hover {
  background: #fff;
}

@media (min-width: 90rem) {
  .hero-mock__tabs {
    overflow-x: visible;
  }

  .hero-mock__tabs button {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px 8px;
  }
}

.hero-mock__stage {
  position: absolute;
  inset: 3.75rem 1rem 1rem;
  z-index: 1;
}

.hero-mock__panel {
  position: absolute;
  inset: 0;
}

.hero-mock__panel[hidden] {
  display: none;
}

.hero-mock__flags {
  position: absolute;
  top: 4%;
  right: 0;
  display: grid;
  gap: 0.5rem;
  width: min(100%, 27.75rem);
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero-mock__badge,
.hero-mock__liquidity,
.hero-mock__efficiency {
  display: block;
  width: 100%;
  height: auto;
}

.hero-mock__gauges {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  width: min(100%, 28.5rem);
  max-width: 100%;
  padding: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scrollbar-width: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: scale(0.9);
  transform-origin: left bottom;
}

.hero-mock__gauges::-webkit-scrollbar {
  display: none;
}

.hero-mock__gauge-img {
  flex: 0 0 calc((100% - 12px) / 2);
  width: calc((100% - 12px) / 2);
  height: auto;
  border-radius: 0.625rem;
  scroll-snap-align: start;
}

/* Full-bleed product screenshots (Industry / Comparison / Valuation) */
.hero-mock__shot {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
  object-position: top left;
  border-radius: 12px;
  background: #fff;
}

/* AI Assistant panel — glass frame around stacked cards */
.hero-mock__assistant {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-height: 16rem;
  padding: 0.5rem;
}

.hero-mock__assistant-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 15.24px;
  box-sizing: border-box;
  width: 100%;
  max-width: 470px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero-mock__assistant-img {
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: auto;
  border-radius: 12px;
  object-fit: fill;
  aspect-ratio: auto;
}

.hero-mock__assistant-img--chat,
.hero-mock__assistant-img--prompts {
  width: 100%;
}

@media (min-width: 64rem) and (max-width: 89.99rem) {
  .hero-mock__gauges {
    width: min(100%, 22rem);
    padding: 10px;
    gap: 8px;
    transform: scale(0.82);
  }

  .hero-mock__flags {
    width: min(100%, 90%);
    padding: 0.5rem;
  }
}

@media (min-width: 90rem) {
  .hero-mock__gauges {
    width: 28.5rem;
  }

  .hero-mock__flags {
    width: min(100%, 27.75rem);
  }
}

@media (max-width: 39.99rem) {
  .hero-mock {
    aspect-ratio: auto;
    max-width: none;
    min-height: 28rem;
  }

  .hero-mock__stage {
    position: relative;
    inset: auto;
    margin-top: 2.5rem;
    min-height: 22rem;
  }

  .hero-mock__panel {
    position: relative;
    inset: auto;
    min-height: 22rem;
  }

  .hero-mock__panel[hidden] {
    display: none;
  }

  .hero-mock__flags {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-bottom: 0.75rem;
  }

  .hero-mock__gauges {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    transform: none;
  }

  .hero-mock__shot {
    min-height: 22rem;
  }

  .hero-mock__assistant {
    min-height: 0;
    align-items: stretch;
  }

  .hero-mock__assistant-card {
    max-width: none;
  }
}

/* Stats */

.stats {
  padding: 0;
}

.stats__panel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 0;
  padding: 20px 12px;
  background: var(--color-brand);
  border-radius: 30px;
  color: var(--color-white);
  text-align: center;
}

.stats__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.stats__item strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1667;
  letter-spacing: -0.06em;
  color: var(--color-white);
}

.stats__item span {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.06em;
  color: var(--color-white);
}

.stats__ask-wrap {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 95;
}

.stats__ask {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  border: 1px solid var(--color-brand);
  border-radius: 30px;
  background: var(--color-brand);
  box-shadow: 0 0 20px 4px rgba(5, 122, 68, 0.2);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.stats__ask::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--color-brand);
  box-shadow: 0 0 28px 8px rgba(5, 122, 68, 0.38);
  pointer-events: none;
  animation: ask-max-fab-pulse 2.6s ease-in-out infinite;
}

.stats__ask[aria-expanded="true"]::after {
  animation: none;
  opacity: 0;
}

@keyframes ask-max-fab-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .stats__ask::after {
    animation: none;
    opacity: 0;
  }
}

.ask-max-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 16px);
  z-index: 96;
  display: flex;
  flex-direction: column;
  width: min(380px, calc(100vw - 32px));
  height: min(640px, calc(100vh - 120px));
  overflow: hidden;
  border-radius: 16px;
  background: var(--color-white);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  text-align: left;
}

.ask-max-panel[hidden] {
  display: none;
}

.ask-max-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--color-brand);
  color: var(--color-white);
}

.ask-max-panel__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.ask-max-panel__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.ask-max-panel__titles {
  min-width: 0;
}

.ask-max-panel__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0;
  color: var(--color-white);
}

.ask-max-panel__status {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 2px 0 0;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.8);
}

.ask-max-panel__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7CFFB2;
  box-shadow: 0 0 0 2px rgba(124, 255, 178, 0.25);
}

.ask-max-panel__actions {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.ask-max-panel__icon-btn,
.ask-max-panel__close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.ask-max-panel__icon-btn:hover,
.ask-max-panel__close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.ask-max-panel__body {
  flex: 1 1 auto;
  overflow: auto;
  padding: 16px;
  background: #f7f8f8;
}

.ask-max-panel__intro {
  display: flex;
  gap: 12px;
  padding: 14px;
  border: 1px solid #e8ebe9;
  border-radius: 12px;
  background: var(--color-white);
}

.ask-max-panel__intro-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 22px;
}

.ask-max-panel__intro-copy {
  min-width: 0;
}

.ask-max-panel__intro-title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-text-title);
}

.ask-max-panel__intro-text {
  margin: 0;
  max-width: 281px;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0;
  color: var(--color-body-text);
}

.ask-max-panel__prompt-label {
  margin: 18px 0 8px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(107, 106, 106, 0.8);
}

.ask-max-panel__prompts {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ask-max-panel__prompt {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #e5e7e6;
  border-radius: 10px;
  background: var(--color-white);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ask-max-panel__prompt:hover,
.ask-max-panel__prompt.is-idle-hint {
  border-color: rgba(5, 122, 68, 0.35);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.ask-max-panel__prompt-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

.ask-max-panel__prompt-text {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-text-title);
}

.ask-max-panel__prompt-arrow {
  flex-shrink: 0;
  display: inline-flex;
}

.ask-max-panel__composer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid #e8ebe9;
  background: var(--color-white);
}

.ask-max-panel__input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 8px 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-text-title);
}

.ask-max-panel__input:focus {
  outline: none;
}

.ask-max-panel__input:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}

.ask-max-panel__composer:focus-within {
  box-shadow: inset 0 0 0 2px rgba(5, 122, 68, 0.25);
}

.ask-max-panel__input::placeholder {
  color: var(--color-body-text);
  opacity: 1;
}

.ask-max-panel__send {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 4px;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.ask-max-panel__send:hover {
  background: rgba(5, 122, 68, 0.08);
}

.ask-max-panel.is-conversation .ask-max-panel__input::placeholder {
  color: rgba(107, 106, 106, 0.7);
}

.ask-max-panel__chat {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ask-max-panel__thread {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ask-max-panel__chat[hidden],
.ask-max-panel__intro-view[hidden],
.ask-max-panel__generating[hidden],
.ask-max-panel__error[hidden],
.ask-max-panel__response[hidden],
.ask-max-panel__metric[hidden],
[data-ask-max-followup-label][hidden],
[data-ask-max-followups][hidden] {
  display: none;
}

.ask-max-panel__message--user {
  display: flex;
  justify-content: flex-start;
}

.ask-max-panel__message-text {
  max-width: 100%;
  margin: 0;
  padding: 0 0 0 10px;
  border-left: 2px solid rgba(5, 122, 68, 0.45);
  border-radius: 0;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 17.4px;
  letter-spacing: 0;
  color: var(--color-text-title);
}

.ask-max-panel__generating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
}

.ask-max-panel__generating-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-brand);
  opacity: 0.35;
  animation: ask-max-gen-dot 1.1s ease-in-out infinite;
}

.ask-max-panel__generating-dot:nth-child(2) {
  animation-delay: 0.15s;
}

.ask-max-panel__generating-dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes ask-max-gen-dot {
  0%, 80%, 100% { opacity: 0.3; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-2px); }
}

.ask-max-panel__error {
  padding: 12px;
  border: 1px solid #e8ebe9;
  border-radius: 10px;
  background: var(--color-white);
}

.ask-max-panel__error-text {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--color-body-text);
}

.ask-max-panel__error-retry {
  padding: 6px 12px;
  border: 1px solid var(--color-brand);
  border-radius: 8px;
  background: transparent;
  color: var(--color-brand);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.ask-max-panel__error-retry:hover {
  background: rgba(5, 122, 68, 0.06);
}

.ask-max-panel__response {
  padding: 14px;
  border: 1px solid #e8ebe9;
  border-radius: 12px;
  background: var(--color-white);
}

.ask-max-panel__response-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ask-max-panel__response-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  width: 27px;
  height: 22px;
}

.ask-max-panel__response-text {
  max-width: 318px;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0;
  color: var(--color-body-text);
}

.ask-max-panel__response-text strong {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0;
  color: var(--color-brand);
}

.ask-max-panel__metric {
  margin-top: 12px;
  padding: 12px;
  border-radius: 10px;
  background: #f0f2f1;
}

.ask-max-panel__metric-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.ask-max-panel__metric-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-body-text);
}

.ask-max-panel__metric-value {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-brand);
}

.ask-max-panel__metric-track {
  position: relative;
  height: 4px;
  border-radius: 100px;
  background: rgba(226, 234, 229, 1);
}

.ask-max-panel__metric-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 85%;
  height: 4px;
  border-radius: 100px;
  background: var(--color-brand);
}

.ask-max-panel__metric-knob {
  position: absolute;
  left: 85%;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid var(--color-white);
  border-radius: 8px;
  background: var(--color-brand);
  box-sizing: border-box;
  transform: translate(-50%, -50%);
}

.ask-max-panel__metric-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: var(--color-body-text);
}

.ask-max-panel__metric-scale-end {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.16px;
  text-transform: uppercase;
}

.ask-max-panel__metric-scale-mid {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.16px;
}

/* Knowledge base sections behind a retrieved answer */
.ask-max-panel__sources {
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--color-border);
}

.ask-max-panel__sources[hidden] {
  display: none;
}

.ask-max-panel__sources-label {
  margin: 0 0 4px;
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.18px;
  text-transform: uppercase;
  color: var(--color-text-muted, #6b7280);
}

.ask-max-panel__sources-list {
  margin: 0;
  padding-left: 14px;
  list-style: disc;
}

.ask-max-panel__sources-list li {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
  color: var(--color-body-text);
}

.stats__ask-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

@media (max-width: 39.99rem) {
  .stats__ask-wrap {
    right: 16px;
    bottom: 16px;
  }

  .stats__ask {
    padding: 14px 18px;
    font-size: 16px;
  }

  .ask-max-panel {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    height: min(88vh, 720px);
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.18);
  }
}

@media (min-width: 48rem) {
  .stats__panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding: 20px 0;
  }

  .stats__item {
    flex: 1 1 0;
    padding: 0 1rem;
  }

  .stats__item:not(:last-of-type)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 56px;
    background: rgba(255, 255, 255, 0.3);
  }

  .stats__item strong {
    font-size: 48px;
    line-height: 56px;
  }
}

/* Why */

.why__panel {
  background: #fff;
}

.why__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.why__content .section-badge {
  margin-bottom: 1.25rem;
}

.why__visual {
  width: 100%;
  max-width: 33.1875rem; /* 531px — Figma */
}

.why-flow {
  position: relative;
  display: grid;
  align-content: center;
  gap: 40px;
  box-sizing: border-box;
  width: 100%;
  max-width: 33.1875rem; /* 531px */
  min-height: 25rem; /* 400px */
  padding: 40px;
  overflow: hidden;
  border-radius: 20px;
  background:
    linear-gradient(rgba(5, 122, 68, 0.12) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(90deg, rgba(5, 122, 68, 0.12) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(180deg, rgba(10, 31, 22, 1) 0%, rgba(5, 16, 11, 1) 100%);
  box-shadow: 0 15px 35px 0 rgba(10, 31, 22, 0.1);
}

.why-flow__line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  z-index: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(5, 122, 68, 0.55) 12%,
    rgba(5, 122, 68, 0.55) 88%,
    transparent
  );
  transform: translateY(-50%);
  pointer-events: none;
}

.why-flow__card {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-sizing: border-box;
  width: max-content;
  max-width: min(100%, 20rem);
  min-height: 3.75rem; /* 60px hug */
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  background: rgba(18, 28, 22, 0.92);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.why-flow__card--input {
  justify-self: start;
}

.why-flow__card--engine {
  justify-self: center;
  max-width: min(100%, 22rem);
  border-color: transparent;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.why-flow__card--predict {
  justify-self: end;
  border-color: rgba(5, 122, 68, 0.45);
  background: rgba(5, 122, 68, 0.1);
}

.why-flow__icon {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
}

.why-flow__icon--brand {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(0, 168, 107, 0.16);
}

.why-flow__icon--predict {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(0, 168, 107, 1);
}

.why-flow__meta {
  min-width: 0;
  flex: 1;
}

.why-flow__label {
  margin: 0 0 0.25rem;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: rgba(160, 176, 165, 1);
}

.why-flow__label--brand {
  letter-spacing: 0.5px;
  color: var(--color-brand);
}

.why-flow__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  color: #fff;
}

.why-flow__title--dark {
  color: rgba(10, 31, 22, 1);
}

.why-flow__tag {
  flex-shrink: 0;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(5, 122, 68, 0.12);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-brand);
  white-space: nowrap;
}

.check-list {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.5rem;
}

.check-list li:last-child {
  margin-bottom: 0;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--color-brand);
  border-radius: 0.3rem;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1.5 5.2 4.4 8.1 10.5 1.5' stroke='%23069352' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 0.75rem 0.625rem no-repeat;
}

.check-list strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--color-text-title);
}

.check-list span {
  display: block;
  font-size: var(--text-sm-size);
  font-weight: var(--text-sm-weight);
  line-height: var(--text-sm-line);
  letter-spacing: 0;
  color: var(--color-body-text);
}

@media (max-width: 39.99rem) {
  .why__content .section-badge {
    display: flex;
    width: fit-content;
    margin-inline: auto;
  }

  .why__content .section-title {
    margin-inline: auto;
    text-align: center;
  }

  .why-flow {
    min-height: auto;
    gap: 1.25rem;
    padding: 1.5rem;
  }

  .why-flow__line {
    display: none;
  }

  .why-flow__card,
  .why-flow__card--engine {
    width: 100%;
    justify-self: stretch;
    margin: 0;
  }
}

@media (min-width: 64rem) {
  .why__grid {
    grid-template-columns: 33.1875rem minmax(0, 1fr);
    gap: 4rem;
  }

  .why-flow {
    width: 33.1875rem; /* 531px fixed — Figma */
    max-width: 33.1875rem;
    height: 26.75rem; /* 428px fixed — Figma */
    min-height: 26.75rem;
  }
}

/* Products */

.products__panel {
  background: #fff;
}

.products__grid {
  display: grid;
  gap: 1.5rem;
}

.products__list {
  display: grid;
  align-content: start;
  gap: 12px;
}

.products__item {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.products__item.is-open {
  border-color: var(--color-brand);
}

.products__trigger {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 12px 16px;
  border: 0;
  background: transparent;
  font: inherit;
  color: var(--color-text-title);
  text-align: left;
  cursor: pointer;
}

.products__item.is-open .products__trigger {
  padding: 12px 16px 8px;
}

.products__num {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--color-brand);
}

.products__label {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--color-text-title);
}

.products__item.is-open .products__label {
  font-size: 16px;
}

.products__arrow {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  padding: 3px 2px;
  margin-left: auto;
  opacity: 1;
  transition: opacity 0.2s ease, width 0.3s ease, padding 0.3s ease;
}

.products__arrow svg {
  display: block;
  width: 11px;
  height: 10px;
}

.products__item.is-open .products__arrow {
  width: 0;
  padding: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.products__body {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 16px;
  transition: grid-template-rows 0.35s ease;
  /* Keep collapsed accordion content out of keyboard / AT traversal */
  visibility: hidden;
}

.products__item.is-open .products__body {
  grid-template-rows: 1fr;
  padding: 0 16px;
  visibility: visible;
}

.products__body-inner {
  overflow: hidden;
  min-height: 0;
  padding-bottom: 0;
  opacity: 0;
  transition:
    opacity 0.25s ease,
    padding-bottom 0.35s ease;
}

.products__item.is-open .products__body-inner {
  padding-bottom: 16px;
  opacity: 1;
}

.products__body p {
  margin: 0 0 0.75rem;
  font-size: var(--text-sm-size);
  font-weight: var(--text-sm-weight);
  line-height: var(--text-sm-line);
  letter-spacing: 0;
  color: var(--color-body-text);
}

.products__body .text-link {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0;
}

.preview-frame {
  min-height: 22rem;
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: #eceff1;
  color: #333;
}

.preview-frame--products {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.preview-frame__group {
  display: none;
}

.preview-frame__group.is-active {
  display: block;
}

.preview-frame__scroller::-webkit-scrollbar {
  width: 4px;
}

.preview-frame__scroller::-webkit-scrollbar-track {
  background: transparent;
}

.preview-frame__scroller::-webkit-scrollbar-thumb {
  border-radius: 30px;
  background: rgba(5, 122, 68, 1);
}

.preview-frame__scroller {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  /* One screenshot tall — rest remains scrollable */
  aspect-ratio: 2199 / 1017;
  max-height: none;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(5, 122, 68, 1) transparent;
}

.preview-frame__scroller .shot-frame__img {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.preview-frame__shot {
  display: none;
}

.preview-frame__shot.is-active {
  display: block;
}

.preview-frame__label {
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.preview-frame__metric {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: #e67e22;
}

.preview-frame__metric span {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #666;
}

.preview-frame__note {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #777;
}

.preview-frame--app {
  background: #0f3d2a;
  color: #fff;
}

.preview-frame--app ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.preview-frame--app li {
  padding: 0.65rem 0.85rem;
  margin-bottom: 0.4rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 64rem) {
  .products__grid {
    grid-template-columns: 0.835fr 1.265fr; /* preview +10% vs prior 1.15fr */
    align-items: stretch;
  }
}

/* Industry */

.industry .panel {
  background: #fff;
}

.industry__intro .section-title {
  margin-bottom: 0.75rem;
}

.search-field {
  position: relative;
  display: block;
}

.search-field__icon {
  position: absolute;
  left: 12px;
  top: 50%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 26px;
  height: 26px;
  margin: 0;
  padding: 4px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  transform: translateY(-50%);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.search-field__icon:hover {
  background: rgba(5, 122, 68, 0.08);
}

.search-field__icon:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}

.search-field__icon svg {
  display: block;
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.search-field input {
  width: 100%;
  padding: 14px 16px 14px 46px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--color-text-title);
  background: #fff;
}

.search-field input::placeholder {
  color: var(--color-body-text);
  opacity: 1;
}

.search-field__suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 20;
  margin: 0;
  padding: 6px;
  list-style: none;
  max-height: 16rem;
  overflow-y: auto;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(18, 18, 23, 0.12);
}

.search-field__suggestions[hidden] {
  display: none;
}

.search-field__suggestion {
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  color: var(--color-text-title);
  cursor: pointer;
}

.search-field__suggestion:hover,
.search-field__suggestion.is-active {
  background: rgba(5, 122, 68, 0.08);
  color: var(--color-brand-dark);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 1rem 0;
}

@media (min-width: 64rem) {
  .industry .tag-row {
    flex-wrap: nowrap;
    gap: 6px;
  }
}

.tag-row__label {
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--color-body-text);
}

.tag {
  flex-shrink: 0;
  padding: 4px 10px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--color-text-title);
  cursor: pointer;
  white-space: nowrap;
}

.tag:hover,
.tag.is-active {
  border-color: var(--color-brand);
  color: var(--color-brand);
}

.tag:focus-visible {
  border-color: var(--color-brand);
}

.tag.is-active {
  border-color: var(--color-text-title);
  color: var(--color-text-title);
}

.import__content .section-lead {
  max-width: 757px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4; /* 140% */
  letter-spacing: 0;
  color: rgba(107, 106, 106, 1);
}

@media (max-width: 39.99rem) {
  .import__content .section-badge {
    display: flex;
    width: fit-content;
    margin-inline: auto;
  }

  .import__content .section-title {
    margin-inline: auto;
    text-align: center;
  }
}

.import__visual {
  width: 95%;
  max-width: 100%;
  justify-self: start;
}

@media (max-width: 63.99rem) {
  .panel--import .import__content {
    order: 1;
  }

  .panel--import .import__visual {
    order: 2;
    width: 100%;
  }
}

.import__methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

@media (max-width: 39.99rem) {
  .import__methods {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
  }

  .import__methods .method-chip {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (min-width: 64rem) {
  .import__methods {
    flex-wrap: nowrap;
  }
}

.method-chip {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--color-border);
  border-radius: 0.65rem;
  background: #fff;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--color-text-title);
  white-space: nowrap;
}

.method-chip__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
}

.method-chip__icon svg {
  display: block;
  width: 14px;
  height: auto;
}

/* Capabilities */

.capabilities__panel {
  background: #fff;
}

.capabilities__panel .section-lead--center {
  max-width: 650px;
}

.capabilities__grid {
  display: grid;
  gap: 1.5rem;
}

.cap-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.cap-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1rem;
  border-radius: 0.85rem;
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: none;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0;
  color: rgba(19, 19, 19, 1);
  white-space: nowrap;
}

.cap-list__icon {
  flex-shrink: 0;
  box-sizing: border-box;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: 8px;
  background: rgba(5, 122, 68, 0.08);
  object-fit: contain;
}

.capabilities__device {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  width: 100%;
  max-width: 700px;
  margin-inline: auto;
}

.capabilities__lid {
  box-sizing: border-box;
  width: calc(100% * 596 / 737);
  min-width: 0;
  padding: 2px 2px 0;
  overflow: hidden;
  background: #1a202c;
  border: 2px solid #4a5568;
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
}

.capabilities__screen {
  min-width: 0;
  overflow: hidden;
  background: #000;
  border-radius: 22px 22px 0 0;
}

.capabilities__mockup {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

.capabilities__mark {
  margin: 0;
  padding: 7px 0 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0;
  text-align: center;
  color: rgba(160, 174, 192, 1);
  background: #1a202c;
}

.capabilities__base {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 63.99rem) {
  .capabilities__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    align-items: stretch;
  }

  .capabilities__device {
    grid-column: 1 / -1;
    order: -10;
  }

  /* Flatten both lists into one grid so row heights stay even */
  .capabilities__grid > .cap-list {
    display: contents;
  }

  .capabilities__grid > .cap-list:first-of-type li:nth-child(1) { order: 1; }
  .capabilities__grid > .cap-list:last-of-type li:nth-child(1) { order: 2; }
  .capabilities__grid > .cap-list:first-of-type li:nth-child(2) { order: 3; }
  .capabilities__grid > .cap-list:last-of-type li:nth-child(2) { order: 4; }
  .capabilities__grid > .cap-list:first-of-type li:nth-child(3) { order: 5; }
  .capabilities__grid > .cap-list:last-of-type li:nth-child(3) { order: 6; }
  .capabilities__grid > .cap-list:first-of-type li:nth-child(4) { order: 7; }
  .capabilities__grid > .cap-list:last-of-type li:nth-child(4) { order: 8; }

  .cap-list li {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.65rem;
    height: 100%;
    min-height: 7.5rem;
    padding: 0.85rem;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    white-space: normal;
  }
}

/*
  Mid desktop: device on top, capability cards in a 2×4 grid below.
  The old 64rem 3-column layout (20rem | 700px | 20rem) crushed the laptop
  between the cards on ~1024–1440px viewports.
*/
@media (min-width: 64rem) and (max-width: 89.99rem) {
  .capabilities__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
    align-items: stretch;
  }

  .capabilities__device {
    grid-column: 1 / -1;
    order: -10;
    max-width: 40rem;
  }

  .capabilities__grid > .cap-list {
    display: contents;
  }

  .capabilities__grid > .cap-list:first-of-type li:nth-child(1) { order: 1; }
  .capabilities__grid > .cap-list:last-of-type li:nth-child(1) { order: 2; }
  .capabilities__grid > .cap-list:first-of-type li:nth-child(2) { order: 3; }
  .capabilities__grid > .cap-list:last-of-type li:nth-child(2) { order: 4; }
  .capabilities__grid > .cap-list:first-of-type li:nth-child(3) { order: 5; }
  .capabilities__grid > .cap-list:last-of-type li:nth-child(3) { order: 6; }
  .capabilities__grid > .cap-list:first-of-type li:nth-child(4) { order: 7; }
  .capabilities__grid > .cap-list:last-of-type li:nth-child(4) { order: 8; }

  .cap-list li {
    white-space: normal;
  }
}

/* Wide desktop: cards | device | cards */
@media (min-width: 90rem) {
  .capabilities__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 34rem) minmax(0, 1fr);
    align-items: center;
    gap: 1.5rem 1.75rem;
  }

  .capabilities__device {
    max-width: 34rem;
  }

  .cap-list li {
    white-space: normal;
  }
}

/* Expertise */

.expertise {
  padding: 0;
}

.expertise__panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  box-sizing: border-box;
  width: 100%;
  padding: 40px;
  border-radius: 30px;
  background:
    var(--cta-grid),
    var(--color-brand);
  color: #fff;
  box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.01);
}

.expertise__content h2 {
  margin: 0 0 1rem;
  max-width: 756px;
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 4vw, 36px);
  font-weight: 600;
  line-height: 1.111; /* 40/36 */
  letter-spacing: -0.06em;
  color: #fff;
}

.expertise__content .section-badge--on-brand {
  color: #fff;
}

.expertise__content > p:not(.section-badge) {
  margin: 0 0 1.5rem;
  max-width: 756px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  color: #fff;
  opacity: 1;
}

.expertise__cards {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr 1fr;
}

.expertise__cards article {
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-sizing: border-box;
  padding: 10px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(236, 236, 236, 0.2);
}

.expertise__cards h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: -0.06em;
  color: #fff;
}

.expertise__cards p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.06em;
  color: #fff;
  opacity: 1;
}

@media (max-width: 63.99rem) {
  .expertise__panel {
    text-align: center;
  }

  .expertise__content {
    display: contents;
  }

  .expertise__content .section-badge {
    order: 1;
    margin-inline: auto;
  }

  .expertise__content h2 {
    order: 2;
    margin-inline: auto;
  }

  .expertise__content > p {
    order: 3;
    margin-inline: auto;
    margin-bottom: 0;
  }

  .expertise__cards {
    order: 4;
    text-align: left;
  }

  .expertise__content .btn {
    order: 5;
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 64rem) {
  .expertise__panel {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .expertise__content {
    flex: 1 1 auto;
    min-width: 0;
  }

  .expertise__cards {
    flex: 0 0 34rem;
    width: 34rem;
  }

  .expertise__cards p {
    white-space: nowrap;
  }
}

/* Audience */

.audience__panel {
  background: #fff;
}

@media (min-width: 40rem) {
  .audience-break {
    display: none;
  }
}

.audience__grid {
  display: grid;
  gap: 1rem;
}

.audience-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-sizing: border-box;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(10, 31, 22, 1) 0%, rgba(5, 16, 11, 1) 100%);
  box-shadow: 0 12px 30px 0 rgba(3, 145, 77, 0.03);
  color: #fff;
}

.audience-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  padding: 10px;
  margin-bottom: 0;
  border-radius: 10px;
  background: rgba(5, 122, 68, 0.16);
}

.audience-card__icon img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 28px;
}

.audience-card h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0;
  color: #fff;
}

.audience-card p {
  margin: 0;
  flex: 1 1 auto;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.7);
}

.audience-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.audience-card__tags span {
  display: inline-flex;
  align-items: center;
  box-sizing: border-box;
  min-height: 28px;
  padding: 6px 11px;
  border: 1px solid rgba(124, 255, 178, 0.28);
  border-radius: 8px;
  background: rgba(5, 122, 68, 0.38);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.333;
  letter-spacing: 0;
  color: #eaf8f0;
  white-space: nowrap;
}

@media (min-width: 64rem) {
  .audience__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

/* Testimonials */

.testimonials {
  padding: 0;
}

.testimonials__panel {
  display: grid;
  gap: 2.5rem;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: 1.5rem;
}

.testimonials__intro {
  max-width: 28rem;
}

.testimonials__lead {
  margin: 0;
  font-size: var(--text-sm-size);
  font-weight: var(--text-sm-weight);
  line-height: 1.5;
  color: var(--color-body-text);
}

@media (max-width: 39.99rem) {
  .testimonials__panel {
    gap: 1.5rem;
    padding: 1.5rem 1.25rem;
  }

  .testimonials__intro {
    max-width: none;
    text-align: center;
  }

  .testimonials__intro .section-badge {
    display: flex;
    width: fit-content;
    margin-inline: auto;
  }

  .testimonials__intro .section-title {
    margin-inline: auto;
  }

  .quote-card blockquote {
    padding: 1.5rem 1.25rem;
  }
}

@media (min-width: 40rem) {
  .testimonials-break {
    display: none;
  }
}

.quote-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.quote-card__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid rgba(236, 236, 236, 1);
  background: rgba(247, 247, 247, 1);
}

.quote-card__person {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.quote-card__logo {
  flex-shrink: 0;
  width: auto;
  max-width: 90px;
  max-height: 42px;
  height: auto;
  object-fit: contain;
}

.quote-card__slides {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.quote-card__slide[hidden] {
  display: none;
}

.quote-card__meta {
  display: grid;
  gap: 0;
  margin: 0;
}

.quote-card__meta strong {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--color-text-title);
}

.quote-card__meta span {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0;
  color: var(--color-body-text);
}

.quote-card__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
  padding: 16px 20px 20px;
}

.quote-card__page {
  min-width: 31px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
  color: rgba(107, 106, 106, 1);
}

.quote-card__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 18px;
  background: rgba(3, 145, 77, 1);
  color: #fff;
  box-shadow: 0 4px 12px 0 rgba(3, 145, 77, 0.2);
  cursor: pointer;
}

.quote-card__nav-btn:hover:not(:disabled) {
  filter: brightness(1.05);
}

.quote-card__nav-btn:disabled {
  border-color: rgba(236, 236, 236, 1);
  background: #fff;
  color: rgba(107, 106, 106, 1);
  box-shadow: none;
  cursor: default;
  opacity: 1;
}

.quote-card blockquote {
  position: relative;
  margin: 0;
  padding: 1.75rem 1.5rem 1.75rem;
}

.quote-card blockquote::before {
  content: none;
}

.quote-card__marks {
  display: block;
  width: 40px;
  height: 36px;
  margin-bottom: 0.85rem;
}

.quote-card blockquote p {
  margin: 0 0 0.85rem;
}

.quote-card blockquote p:last-child {
  margin-bottom: 0;
}

.quote-card__lead {
  max-width: 594px;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.04em;
  color: var(--color-text-title);
}

.quote-card__body {
  max-width: 594px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--color-body-text);
}

@media (min-width: 64rem) {
  .testimonials__panel {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
    gap: 3.5rem;
    align-items: center;
    padding: 2.5rem 2.5rem 2.5rem 2.75rem;
  }

  .quote-card {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "header nav"
      "slides slides";
  }

  .quote-card__header {
    grid-area: header;
    border-radius: 16px 0 0 0;
  }

  .quote-card__nav {
    grid-area: nav;
    align-self: stretch;
    margin: 0;
    padding: 16px 24px;
    border-radius: 0 16px 0 0;
    border-bottom: 1px solid rgba(236, 236, 236, 1);
    background: rgba(247, 247, 247, 1);
  }

  .quote-card__slides {
    grid-area: slides;
  }
}

/* Final CTA */

.final-cta {
  padding: 0;
}

.final-cta__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1.5rem;
  border-radius: 1.5rem;
  background:
    var(--cta-grid),
    var(--color-brand);
  color: var(--color-white);
  text-align: center;
}

.final-cta__panel .section-badge {
  margin-bottom: 1rem;
}

.final-cta__panel h2 {
  max-width: 668px;
  margin: 0 auto 1rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.111;
  letter-spacing: -0.06em;
  color: var(--color-white);
}

.final-cta__lead {
  max-width: 732px;
  margin: 0 auto 1.5rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.92);
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

@media (max-width: 39.99rem) {
  .final-cta__panel {
    gap: 0;
    padding: 2rem 1.25rem 1.5rem;
    background:
      linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 40px 40px,
      linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px) 0 0 / 40px 40px,
      var(--color-brand);
  }

  .final-cta__panel .section-badge {
    margin-bottom: 1.25rem;
  }

  .final-cta__panel h2 {
    max-width: 16.5rem;
    margin-bottom: 0.85rem;
    font-size: 1.75rem;
    line-height: 1.15;
  }

  .final-cta__lead {
    max-width: 22rem;
    margin-bottom: 1.75rem;
    font-size: 14px;
    line-height: 1.45;
  }

  .final-cta__actions {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    gap: 0.75rem;
  }

  .final-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .final-cta__actions .btn--white {
    white-space: normal;
    height: auto;
    min-height: 48px;
  }

  .final-cta__actions .btn--white .btn__icon {
    display: none;
  }
}

@media (min-width: 48rem) {
  .final-cta__panel {
    padding: 3rem 2rem;
  }
}

/* Shared marketing shell — Free Scorecard start / wizard / report language */

:root {
  --mkt-forest: #0f4a38;
  --mkt-forest-deep: #0a2f24;
  --mkt-cta: #2e6b41;
  --mkt-mint: #dceee0;
  --mkt-mint-soft: #f4f9f4;
  --mkt-mint-bar: #f3f7f4;
  --mkt-report-border: #e0ebe4;
  --mkt-report-ink: #12281a;
  --mkt-warn: #94442e;
  --mkt-input-border: #cde9db;
  --mkt-shell-radius: 20px;
  --mkt-card-radius: 16px;
  --mkt-input-radius: 12px;
}

body.mkt-page #main {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding-inline: var(--container-pad);
}

@media (max-width: 39.99rem) {
  body.mkt-page {
    overflow-x: clip;
    padding: 12px;
  }

  body.mkt-page #main,
  body.mkt-page .container,
  body.mkt-page .site-header__inner {
    padding-inline: 0;
  }
}

/* —— Hero —— */
.mkt-hero {
  padding: 0;
}

.mkt-hero__layout {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mkt-hero__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3rem);
  background: #fff;
  border-radius: 1.5rem;
}

.mkt-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 36rem;
}

.mkt-hero--simple .mkt-hero__layout {
  display: block;
}

.mkt-hero--simple .mkt-hero__copy {
  max-width: 44rem;
}

.mkt-hero__copy > .section-badge {
  margin-bottom: 1rem;
}

.mkt-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.06em;
  color: var(--color-text-title);
}

.mkt-hero__lead {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-body-text);
}

.mkt-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.mkt-hero__trust {
  margin: 1rem 0 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-body-text);
}

.mkt-hero__trust a,
.mkt-table a {
  color: var(--color-brand);
  text-decoration: none;
}

.mkt-hero__trust a:hover,
.mkt-table a:hover {
  text-decoration: none;
}

.mkt-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}

.mkt-feature {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 6px 10px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-title);
}

.mkt-feature__icon {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  padding: 6px;
  border-radius: 4px;
  background: rgba(6, 147, 82, 0.08);
  color: #069352;
  flex-shrink: 0;
}

.mkt-feature__icon svg {
  display: block;
}

.mkt-hero__media {
  display: flex;
  min-width: 0;
}

.mkt-preview.hero-mock {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  overflow: hidden;
  width: 100%;
  min-height: 280px;
  padding: 1.5rem;
  border-radius: 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(180deg, #021e13 0%, #03110d 100%);
  color: #fff;
}

.mkt-preview.hero-mock--forest {
  background:
    var(--cta-grid),
    radial-gradient(90% 70% at 100% 0%, rgba(110, 231, 168, 0.22), transparent 55%),
    linear-gradient(160deg, #0b3d2e 0%, #0f4a38 55%, #057a44 100%);
}

.mkt-preview.hero-mock--forest .mkt-preview__label {
  color: #c8f0d8;
}

.mkt-preview__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mkt-preview__label {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #069352;
}

.mkt-preview__step {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.mkt-preview__step-current {
  color: #fff;
}

.mkt-preview__step-total {
  color: rgba(255, 255, 255, 0.45);
}

.mkt-preview__stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.mkt-preview__gauges {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  width: 100%;
}

.mkt-preview__gauge {
  width: min(160px, 42%);
  height: auto;
}

.mkt-preview__shot {
  display: block;
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  border-radius: 12px;
}

.mkt-hero__stage {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  border-radius: 1.5rem;
  background:
    radial-gradient(90% 70% at 100% 0%, rgba(110, 231, 168, 0.22), transparent 55%),
    linear-gradient(160deg, #0b3d2e 0%, #0f4a38 55%, #057a44 100%);
  color: #fff;
}

.mkt-hero__stage-label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c8f0d8;
}

.mkt-hero__caps,
.mkt-hero__stats,
.mkt-hero__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.mkt-hero__cap,
.mkt-hero__stat,
.mkt-hero__step {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.95rem 1.1rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.mkt-hero__cap-name,
.mkt-hero__stat-value,
.mkt-hero__step-name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.mkt-hero__cap-desc,
.mkt-hero__stat-label,
.mkt-hero__step-desc {
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
}

.mkt-hero__stage-note {
  margin: 0.25rem 0 0;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 47.99rem) {
  .mkt-hero__copy {
    align-items: center;
    text-align: center;
    max-width: none;
  }

  .mkt-hero__cta {
    flex-direction: column;
    width: 100%;
  }

  .mkt-hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .mkt-hero__features {
    justify-content: center;
  }

  .mkt-preview.hero-mock {
    min-height: 220px;
    padding: 1.15rem;
  }
}

@media (min-width: 56rem) {
  .mkt-hero__layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 12px;
    align-items: stretch;
  }

  .mkt-hero__panel {
    padding: 3rem 2.75rem;
  }
}

/* —— White panel sections —— */
.mkt-panel {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: 1.5rem;
  background: #fff;
}

.mkt-panel__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-title);
}

.mkt-panel__lead {
  margin: 0 0 1.35rem;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.mkt-split {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 56rem) {
  .mkt-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 12px;
    align-items: stretch;
  }
}

.mkt-stage,
.mkt-trust {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  min-height: 100%;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  border-radius: var(--mkt-shell-radius);
  background:
    var(--cta-grid),
    radial-gradient(90% 70% at 100% 0%, rgba(110, 231, 168, 0.16), transparent 55%),
    linear-gradient(180deg, var(--mkt-forest) 0%, var(--mkt-forest-deep) 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(15, 28, 18, 0.08);
}

.mkt-stage__label,
.mkt-trust__label {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6ee7a8;
}

.mkt-stage__title,
.mkt-trust__title {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.mkt-stage__list,
.mkt-trust__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mkt-stage__list li,
.mkt-trust__list li {
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.mkt-stage__list li:first-child,
.mkt-trust__list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.mkt-stage a,
.mkt-trust a {
  color: #c8f0d8;
}

/* —— Feature / card grids —— */
.mkt-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 48rem) {
  .mkt-grid--2 {
    grid-template-columns: 1fr 1fr;
  }

  .mkt-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mkt-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 1.25rem 1.2rem;
  border: 1px solid var(--mkt-report-border);
  border-radius: var(--mkt-card-radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.mkt-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--mkt-report-ink);
}

.mkt-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mkt-pill--top {
  background: #dceee0;
  color: #2e6b41;
}

.mkt-pill--above {
  background: #eef4ef;
  color: #3e6645;
}

.mkt-pill--below {
  background: #f5efe6;
  color: #6e5430;
}

.mkt-pill--low {
  background: #f9f2f0;
  color: #94442e;
}

.mkt-card__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-body-text);
}

.mkt-card a {
  color: var(--color-brand);
  font-weight: 600;
  text-decoration: none;
}

.mkt-card a:hover {
  text-decoration: underline;
}

/* —— Steps —— */
.mkt-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
  counter-reset: mkt-step;
}

.mkt-progress {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0 0 0.75rem;
}

@media (min-width: 56rem) {
  .mkt-progress {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.mkt-progress__seg {
  height: 4px;
  border-radius: 999px;
  background: #2e6b41;
}

.mkt-steps li {
  position: relative;
  padding: 1.1rem 1.15rem 1.1rem 3.5rem;
  border-radius: 14px;
  background: var(--mkt-mint-soft);
  border: 1px solid #e0e7e2;
  counter-increment: mkt-step;
}

.mkt-steps li::before {
  content: counter(mkt-step);
  position: absolute;
  left: 1rem;
  top: 1.1rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: #2e6b41;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mkt-steps__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-title);
}

.mkt-steps__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-body-text);
}

@media (min-width: 56rem) {
  .mkt-steps {
    grid-template-columns: 1fr 1fr;
  }
}

/* —— FAQ —— */
.mkt-faq__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.mkt-faq__item {
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--mkt-report-border);
  overflow: hidden;
}

.mkt-faq__item summary {
  position: relative;
  display: block;
  cursor: pointer;
  list-style: none;
  padding: 1rem 2.5rem 1rem 1.15rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-title);
}

.mkt-faq__item summary::-webkit-details-marker {
  display: none;
}

.mkt-faq__item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.15rem;
  color: var(--color-brand);
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
}

.mkt-faq__item.is-open summary::after,
.mkt-faq__item[open] summary::after {
  content: "–";
}

.mkt-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.mkt-faq__item.is-open .mkt-faq__answer,
.mkt-faq__item[open]:not([data-faq-animated]) .mkt-faq__answer {
  grid-template-rows: 1fr;
}

.mkt-faq__answer-inner {
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mkt-faq__item.is-open .mkt-faq__answer-inner,
.mkt-faq__item[open]:not([data-faq-animated]) .mkt-faq__answer-inner {
  opacity: 1;
}

.mkt-faq__item p,
.mkt-faq__item ul {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-body-text);
}

.mkt-faq__item ul {
  padding-left: 2.35rem;
  list-style: disc;
}

.mkt-faq__item li {
  margin: 0.35rem 0;
}

@media (prefers-reduced-motion: reduce) {
  .mkt-faq__answer,
  .mkt-faq__answer-inner {
    transition: none;
  }
}

/* —— Quotes —— */
.mkt-quotes {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.25rem;
}

.mkt-quote,
.mkt-quotes li {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  padding: 1.5rem;
  border: 1px solid #e8e8e8;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.mkt-quote__stars {
  display: flex;
  gap: 0.25rem;
}

.mkt-quote__stars svg {
  width: 1.125rem;
  height: 1.125rem;
}

.mkt-quote__text,
.mkt-quotes__text {
  margin: 0;
  flex: 1;
  font-size: 14px;
  font-style: italic;
  line-height: 1.4;
  color: var(--color-body-text);
}

.mkt-quote__author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1rem;
  border-top: 1px solid #e8e8e8;
}

.mkt-quote__avatar {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #cde9db;
  color: #2e6b41;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.mkt-quote__name,
.mkt-quotes__meta {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  line-height: 24px;
  color: var(--color-text-title);
}

.mkt-quote__role {
  margin: 0.15rem 0 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: var(--color-body-text);
}

@media (min-width: 56rem) {
  .mkt-quotes--2 {
    grid-template-columns: 1fr 1fr;
  }
}

/* —— Forms / contact —— */
.mkt-form {
  display: grid;
  gap: 0.85rem;
}

.mkt-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
}

.mkt-form input,
.mkt-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--mkt-input-border);
  border-radius: var(--mkt-input-radius);
  font: inherit;
  font-size: 1rem;
  color: #172b1a;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.mkt-form input:focus,
.mkt-form textarea:focus {
  outline: none;
  border-color: #a7d4bc;
  box-shadow: 0 0 0 3px rgba(4, 145, 77, 0.12);
}

.mkt-form input::placeholder,
.mkt-form textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 1;
}

.mkt-form__fineprint {
  margin: 0.35rem 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--color-text-muted);
  text-align: center;
}

.mkt-form input.is-invalid,
.mkt-form textarea.is-invalid {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.12);
}

.mkt-form__error {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  color: #b42318;
}

.mkt-form__error[hidden] {
  display: none !important;
}

.mkt-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.mkt-form__hint {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.mkt-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.mkt-contact-list a {
  color: var(--color-brand);
  font-weight: 600;
  text-decoration: none;
}

.mkt-contact-list a:hover {
  text-decoration: underline;
}

/* —— Legal / glossary prose —— */
.mkt-prose h2,
.mkt-prose h3 {
  margin: 1.75rem 0 0.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-title);
}

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

.mkt-prose h2 {
  font-size: 1.35rem;
}

.mkt-prose h3 {
  font-size: 1.1rem;
}

.mkt-prose p,
.mkt-prose li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-body-text);
}

.mkt-prose p {
  margin: 0 0 0.85rem;
}

.mkt-prose ul,
.mkt-prose ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.mkt-prose dt {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--color-text-title);
}

.mkt-prose dd {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-body-text);
}

.mkt-toc {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.mkt-toc a {
  color: var(--color-brand);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}

.mkt-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 0.5rem 0 1rem;
}

.mkt-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.35rem;
  border: 1px solid #b7c9bc;
  border-radius: 12px;
  background: #fff;
}

.mkt-table {
  width: 100%;
  min-width: 28rem;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.mkt-table th,
.mkt-table td {
  padding: 0.7rem 0.85rem;
  text-align: left;
  vertical-align: top;
  border: 1px solid #c5d4c8;
}

.mkt-table thead th {
  background: #eef6ef;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border-bottom-color: #b7c9bc;
}

.mkt-table tbody th {
  font-weight: 650;
  color: var(--color-text-title);
}

.mkt-table tbody td {
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}

.mkt-prose a {
  color: var(--color-brand);
  font-weight: 600;
  text-decoration: none;
}

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

.mkt-panel .mkt-hero__trust a,
.mkt-panel .mkt-hero__trust a:hover,
.mkt-panel .mkt-prose a:hover,
.mkt-panel .mkt-table a:hover {
  text-decoration: none;
}

/* —— Final CTA (shared with existing pages) —— */
.final-cta {
  padding: 0;
}

.final-cta__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1.5rem;
  border-radius: 1.5rem;
  background:
    var(--cta-grid),
    var(--color-brand);
  color: var(--color-white);
  text-align: center;
}

.final-cta__panel .section-badge {
  margin-bottom: 1rem;
}

.final-cta__panel h2 {
  max-width: 668px;
  margin: 0 auto 1rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.111;
  letter-spacing: -0.06em;
  color: var(--color-white);
}

.final-cta__lead {
  max-width: 732px;
  margin: 0 auto 1.5rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

@media (max-width: 39.99rem) {
  .final-cta__panel {
    padding: 2rem 1.25rem 1.5rem;
  }

  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .final-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 48rem) {
  .final-cta__panel {
    padding: 3rem 2rem;
  }
}

/* —— Blog index (editorial library) —— */
.blog-index-hero .mkt-hero__copy {
  max-width: 40rem;
}

.blog-index-hero__stage {
  min-height: 100%;
}

.blog-finsights {
  background: var(--mkt-mint-soft);
  border: 1px solid var(--mkt-report-border);
  box-shadow: inset 0 4px 0 #2e6b41;
}

.blog-finsights .section-badge {
  margin-bottom: 0.75rem;
}

.blog-finsights .mkt-panel__title {
  margin-bottom: 0.45rem;
}

.blog-finsights .blog-index__head {
  align-items: flex-start;
}

.blog-finsights .blog-index__head .btn {
  flex-shrink: 0;
  align-self: flex-start;
}

.blog-finsights__list .blog-index__item:last-child {
  border-bottom: 0;
}

/* —— Finsights library —— */
.fi-hero-stats {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  width: 100%;
}

.fi-hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.fi-hero-stats strong {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.fi-hero-stats span {
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
}

.fi-library .section-badge {
  margin-bottom: 0.75rem;
}

.fi-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

@media (min-width: 48rem) {
  .fi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fi-card--featured {
    grid-column: 1 / -1;
  }
}

@media (min-width: 72rem) {
  .fi-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fi-card--featured {
    grid-column: 1 / 3;
  }
}

.fi-card {
  animation: blog-index-in 0.45s ease both;
}

.fi-card[hidden] {
  display: none;
}

.fi-card__link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  height: 100%;
  padding: 1.25rem 1.2rem 1.15rem;
  border: 1px solid var(--mkt-report-border);
  border-radius: var(--mkt-card-radius);
  background: #fff;
  box-shadow: inset 0 4px 0 #2e6b41, 0 8px 24px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.fi-card__link:hover,
.fi-card__link:focus-visible {
  border-color: #b7d4c4;
  box-shadow: inset 0 4px 0 #2e6b41, 0 12px 28px rgba(15, 28, 18, 0.08);
  transform: translateY(-1px);
}

.fi-card--featured .fi-card__link {
  min-height: 100%;
  padding: 1.5rem 1.4rem 1.35rem;
  background: var(--mkt-mint-soft);
}

.fi-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--mkt-report-ink);
}

.fi-card--featured .fi-card__title {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.fi-card__excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-body-text);
}

.fi-card--featured .fi-card__excerpt {
  -webkit-line-clamp: 4;
  max-width: 42rem;
}

.fi-card__go {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-brand);
}

.fi-card__go .btn__icon {
  width: 12px;
  height: 10px;
}

.mkt-pill--growth {
  background: #e8f3ec;
  color: #1f6b45;
}

@media (prefers-reduced-motion: reduce) {
  .fi-card {
    animation: none;
  }

  .fi-card__link {
    transition: none;
  }

  .fi-card__link:hover,
  .fi-card__link:focus-visible {
    transform: none;
  }
}

.blog-index__head {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 48rem) {
  .blog-index__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
  }
}

.blog-index__lead {
  margin-bottom: 0;
}

.blog-index__search {
  display: block;
  width: 100%;
  max-width: 22rem;
  flex-shrink: 0;
}

.blog-index__search--wide {
  max-width: none;
  margin: 0 0 1.15rem;
}

.blog-index__search input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(11, 61, 46, 0.14);
  border-radius: 0.85rem;
  background: #f6faf7;
  color: var(--color-text-title);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.blog-index__search--wide input {
  padding: 1rem 1.15rem;
  font-size: 1rem;
}

.blog-index__search input::placeholder {
  color: var(--color-text-muted);
  opacity: 1;
}

.blog-index__search input:focus {
  outline: none;
  border-color: rgba(5, 122, 68, 0.45);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(5, 122, 68, 0.12);
}

.blog-index__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
}

.blog-index__az {
  margin: 0 0 1.5rem;
}

.blog-index__az-toggle {
  min-height: 2.1rem;
  padding: 0 0.85rem;
  border: 1px solid rgba(11, 61, 46, 0.14);
  border-radius: 0.55rem;
  background: #fff;
  color: var(--color-body-text);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.blog-index__az-toggle:hover,
.blog-index__az-toggle.is-active {
  background: rgba(5, 122, 68, 0.08);
  border-color: rgba(5, 122, 68, 0.28);
  color: var(--color-brand);
}

.blog-index__letters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgba(11, 61, 46, 0.08);
}

.blog-index__letters[hidden] {
  display: none !important;
}

.blog-index__date {
  display: block;
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
}

.blog-post__date {
  margin: -0.35rem 0 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.blog-index__letter {
  min-width: 2.1rem;
  height: 2.1rem;
  padding: 0 0.55rem;
  border: 0;
  border-radius: 0.55rem;
  background: transparent;
  color: var(--color-body-text);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.blog-index__letter:hover {
  background: rgba(5, 122, 68, 0.08);
  color: var(--color-brand);
}

.blog-index__letter.is-active {
  background: #2e6b41;
  color: #fff;
}

.mkt-peers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  padding: 0.85rem 1.1rem;
  margin: 0 0 1.35rem;
  border-radius: 14px;
  background: #f3f6f3;
}

.mkt-peers__label {
  margin: 0;
  font-size: 13px;
  color: #586960;
}

.mkt-peers__value {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff;
  color: #406b47;
  font-size: 13px;
  font-weight: 700;
}

.mkt-contact-list li {
  padding: 0.85rem 1.1rem;
  border: 1px solid #e0e7e2;
  border-radius: 14px;
  background: var(--mkt-mint-soft);
}

.blog-index__letter:focus-visible {
  outline: 2px solid var(--color-brand);
  outline-offset: 2px;
}

.blog-index__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blog-index__item {
  border-top: 1px solid rgba(11, 61, 46, 0.08);
  animation: blog-index-in 0.45s ease both;
  animation-delay: calc(min(var(--i, 0), 24) * 18ms);
}

.blog-index__item:last-child {
  border-bottom: 1px solid rgba(11, 61, 46, 0.08);
}

.blog-index__item[hidden] {
  display: none;
}

.blog-index__link {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 0.35rem;
  color: inherit;
  text-decoration: none;
  transition: background 0.2s ease, padding-left 0.2s ease;
}

.blog-index__link:hover,
.blog-index__link:focus-visible {
  background: linear-gradient(90deg, rgba(5, 122, 68, 0.06), transparent 70%);
  padding-left: 0.65rem;
  outline: none;
}

.blog-index__copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.blog-index__title {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--color-text-title);
}

.blog-index__link:hover .blog-index__title,
.blog-index__link:focus-visible .blog-index__title {
  color: var(--color-brand);
}

.blog-index__excerpt {
  max-width: 46rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--color-body-text);
}

.blog-index__go {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: rgba(5, 122, 68, 0.08);
  color: var(--color-brand);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.blog-index__link:hover .blog-index__go,
.blog-index__link:focus-visible .blog-index__go {
  transform: translateX(3px);
  background: var(--color-brand);
  color: #fff;
}

.blog-index__empty {
  margin: 1.5rem 0 0;
  padding: 1.25rem 0;
  color: var(--color-body-text);
  font-size: 0.95rem;
}

@keyframes blog-index-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-index__item {
    animation: none;
  }

  .blog-index__link,
  .blog-index__go,
  .blog-index__letter,
  .blog-index__search input {
    transition: none;
  }
}

/* —— Resource groups —— */
.mkt-resource-groups {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mkt-resource-groups__title {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brand);
}

.mkt-resource-groups__lead {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--color-body-text);
}

/* —— How-it-works phases —— */
.mkt-phases {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 56rem) {
  .mkt-phases {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.mkt-phase {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 1.15rem;
  border-radius: var(--mkt-card-radius);
  background: #fff;
  border: 1px solid var(--mkt-report-border);
  box-shadow: inset 0 4px 0 #2e6b41, 0 8px 24px rgba(0, 0, 0, 0.04);
}

.mkt-phase__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--mkt-mint);
  color: #2e6b41;
  font-size: 12px;
  font-weight: 700;
}

.mkt-phase__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-title);
}

.mkt-phase__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--color-body-text);
}

.mkt-phase__list {
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: var(--color-body-text);
  font-size: 0.9rem;
  line-height: 1.45;
}

.mkt-phase__list li + li {
  margin-top: 0.35rem;
}

/* —— Sample checklist —— */
.mkt-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mkt-checklist {
  display: grid;
  gap: 0.85rem;
}

.mkt-checklist__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  align-items: start;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--mkt-report-border);
  border-radius: var(--mkt-card-radius);
  background: #fff;
}

.mkt-checklist__mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-top: 0.1rem;
  border-radius: 999px;
  background: var(--mkt-mint);
  color: #2e6b41;
  font-size: 12px;
  font-weight: 700;
}

.mkt-checklist__name {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--color-text-title);
}

.mkt-checklist__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--color-body-text);
}

/* —— Glossary term rows —— */
.mkt-glossary__term[hidden],
.mkt-glossary-section[hidden],
.mkt-faq__item[hidden] {
  display: none !important;
}

.mkt-glossary__term {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--mkt-report-border);
  border-radius: 14px;
  background: var(--mkt-mint-soft);
  margin-top: 0.65rem;
}

.mkt-glossary__term:last-child {
  border-bottom: 1px solid rgba(11, 61, 46, 0.08);
}

.mkt-glossary-section > h2 {
  margin-top: 1.75rem;
}

.mkt-glossary-section:first-of-type > h2 {
  margin-top: 0.5rem;
}

.mkt-glossary-section dl {
  margin: 0;
}

.mkt-faq__toolbar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 48rem) {
  .mkt-faq__toolbar {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.mkt-link-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.mkt-link-row {
  gap: 0.65rem;
}

.mkt-link-row a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding: 1rem 1.15rem;
  border: 1px solid #e0e7e2;
  border-radius: 14px;
  background: var(--mkt-mint-soft);
  color: var(--color-text-title);
  text-decoration: none;
  font-weight: 650;
}

.mkt-link-row a:hover {
  border-color: #2e6b41;
  color: #2e6b41;
  background: #f2f8f2;
}

.mkt-link-row__meta {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-body-text);
}

/* Live Advisor Sessions — /one-on-one/ */

body.ooo-page.mkt-page #main {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding-inline: var(--container-pad);
}

body.ooo-page .ooo-split,
body.ooo-page .final-cta,
.ooo-hero {
  margin-inline: 0;
}

@media (max-width: 39.99rem) {
  body.ooo-page {
    overflow-x: clip;
    padding: 12px;
  }

  body.ooo-page #main,
  body.ooo-page .container,
  body.ooo-page .site-header__inner {
    padding-inline: 0;
  }
}

.ooo-hero .mkt-hero__panel {
  padding: clamp(1rem, 2vw, 1.5rem);
}

.ooo-hero .mkt-hero__copy {
  max-width: none;
}

.ooo-hero__title {
  margin: 0 0 1rem;
  max-width: 100%;
  font-size: clamp(2.1rem, 4.6vw, 3.15rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--color-text-title);
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}


.ooo-hero .text-brand {
  color: var(--color-brand);
}

.ooo-hero__points {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.85rem 2rem;
  width: 100%;
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
}

.ooo-hero__point {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  gap: 0.55rem;
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text-title);
}

.ooo-hero__point-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--color-brand);
}

.ooo-hero__point-icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.ooo-visual {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
  padding: 0;
  border-radius: 1.5rem;
  background: #eef1ef;
}

.ooo-board {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr) minmax(9.5rem, 0.72fr);
  grid-template-rows: auto 1fr;
  gap: 0.85rem;
  align-items: stretch;
  min-height: 100%;
}

.ooo-board__card {
  position: relative;
  min-width: 0;
  padding: 0.85rem 0.9rem 0.8rem;
  border: 1px solid #e4ebe7;
  border-radius: 0.85rem;
  background: #fff;
  box-shadow: 0 10px 28px rgba(22, 40, 32, 0.08);
}

.ooo-board__card--score {
  z-index: 3;
  grid-column: 1;
  grid-row: 1;
}

.ooo-board__card--ratios {
  z-index: 1;
  grid-column: 2 / 4;
  grid-row: 1;
  overflow-x: auto;
}

.ooo-board__card--compare {
  display: flex;
  flex-direction: column;
  z-index: 2;
  grid-column: 1 / 3;
  grid-row: 2;
}

.ooo-board__card--compare .ooo-board__legend {
  font-size: 0.75rem;
}

.ooo-board__card--compare .ooo-board__swatch {
  width: 10px;
  height: 10px;
}

.ooo-board__card--compare .ooo-board__swatch--range {
  width: 18px;
  height: 8px;
}

.ooo-board__aside {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  grid-column: 3;
  grid-row: 2;
  min-width: 0;
}

.ooo-board__aside .ooo-board__card {
  flex: 1 1 auto;
}

.ooo-board__title {
  margin: 0;
  font-size: 1.01rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: #16324a;
}

.ooo-board__sub,
.ooo-board__metric-label,
.ooo-board__copy,
.ooo-board__scale {
  color: #6b7a73;
}

.ooo-board__sub {
  margin: 0.2rem 0 0.55rem;
  font-size: 0.75rem;
  line-height: 1.35;
}

.ooo-board__metric-label {
  margin: 0.55rem 0 0.2rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.ooo-board__value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.7rem;
}

.ooo-board__value strong {
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #0b6b3a;
}

.ooo-board__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  background: #dceee0;
  font-size: 0.62rem;
  font-weight: 700;
  color: #2e6b41;
}

.ooo-board__slider {
  position: relative;
  height: 10px;
  margin: 0 0.15rem 0.4rem;
  border-radius: 999px;
  background: linear-gradient(#d8ddd9, #d8ddd9) 0 50% / 100% 2px no-repeat;
}

.ooo-board__tick {
  position: absolute;
  top: 3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c5cdc8;
}

.ooo-board__tick:nth-child(1) { left: 0; }
.ooo-board__tick:nth-child(2) { left: 50%; transform: translateX(-50%); }
.ooo-board__tick:nth-child(3) { right: 0; }

.ooo-board__dot {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0b995d;
  box-shadow: 0 0 0 3px rgba(11, 153, 93, 0.16);
}

.ooo-board__scale {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 0.35rem;
  font-size: 0.75rem;
  line-height: 1.25;
}

.ooo-board__scale-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}

.ooo-board__scale-item strong {
  font-weight: 700;
  color: #16324a;
}

.ooo-board__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.75rem;
  line-height: 1.3;
}

.ooo-board__table th,
.ooo-board__table td {
  padding: 0.32rem 0.28rem;
  text-align: left;
  vertical-align: top;
}

.ooo-board__table th {
  background: #f4f6f5;
  font-weight: 700;
  color: #4a5f54;
}

.ooo-board__table th:first-child {
  border-radius: 0.3rem 0 0 0.3rem;
}

.ooo-board__table th:last-child {
  border-radius: 0 0.3rem 0.3rem 0;
}

.ooo-board__table td {
  border-bottom: 1px solid #eef1ef;
  color: #16324a;
  font-weight: 400;
}

.ooo-board__table td:first-child {
  font-weight: 400;
  color: #4a5f54;
}

.ooo-board__table .is-alert {
  color: #e6452e;
}

.ooo-board__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.85rem;
  margin: 0.4rem 0 0.1rem;
  padding: 0;
  list-style: none;
  font-size: 0.58rem;
  font-weight: 500;
  color: #6b7a86;
}

.ooo-board__legend li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.ooo-board__swatch {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.ooo-board__swatch--you { background: #00C853; }
.ooo-board__swatch--median { background: #42A5F5; }
.ooo-board__swatch--range {
  width: 14px;
  height: 6px;
  border-radius: 999px;
  background: rgba(66, 165, 245, 0.28);
}

.ooo-board__chart {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  min-height: 12rem;
  height: auto;
  margin-top: auto;
}

.ooo-board__card--flag {
  background: #fdf4f2;
  border-color: #f3ddd8;
}

.ooo-board__card--max {
  background: #eef7f3;
  border-color: #d7ebe1;
}

.ooo-board__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
}

.ooo-board__kicker--flag { color: #e6452e; }
.ooo-board__kicker--max {
  font-size: 1.01rem;
  color: #1e3a5f;
}

.ooo-board__insight {
  margin: 0 0 0.25rem;
  font-size: 1.01rem;
  font-weight: 700;
  line-height: 1.25;
  color: #16324a;
}

.ooo-board__copy {
  margin: 0 1.4rem 0 0;
  font-size: 0.91rem;
  line-height: 1.4;
}

.ooo-board__arrow {
  position: absolute;
  right: 0.75rem;
  bottom: 0.7rem;
}

.ooo-board__ask {
  position: absolute;
  right: 0.75rem;
  bottom: 0.7rem;
  display: inline-flex;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.ooo-board__ask .ooo-board__arrow {
  position: static;
}

.ooo-split {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ooo-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  height: 100%;
}

.ooo-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  border: 1px solid #e8eee9;
  border-radius: 1.5rem;
  background: #fff;
}

.ooo-card__head {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.85rem;
  margin: 0 0 0.55rem;
}

.ooo-card__head-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  min-width: 0;
}

.ooo-card__head .ooo-card__title {
  margin-bottom: 0;
}

.ooo-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: var(--color-brand);
}

.ooo-card__icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

.ooo-card--webinars .ooo-card__icon,
.ooo-card--session .ooo-card__icon {
  align-self: flex-start;
  width: 72px;
  height: 72px;
}

.ooo-card--webinars .ooo-card__icon svg,
.ooo-card--session .ooo-card__icon svg {
  width: 72px;
  height: 72px;
}

.ooo-card__kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brand);
}

.ooo-card__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--color-text-title);
}

.ooo-card__lead {
  margin: 0 0 1.15rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.ooo-dates {
  flex: 1 1 auto;
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
}

.ooo-date {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-top: 1px solid #eceeed;
}

.ooo-date:last-child {
  padding-bottom: 0.15rem;
}

.ooo-date__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--color-brand);
}

.ooo-date__icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

.ooo-date__copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
  flex: 1;
}

.ooo-date__day {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text-title);
}

.ooo-date__time {
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text-muted);
}

.ooo-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 0.35rem;
  min-height: 36px;
  padding: 0.4rem 1rem;
  border: 0;
  border-radius: var(--btn-radius);
  background: #eaf6ed;
  font-family: var(--btn-font-family);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  color: var(--color-brand-dark);
  white-space: nowrap;
  cursor: pointer;
}

.ooo-register:hover {
  background: #dceee0;
  color: var(--color-brand-dark);
}

.ooo-register .btn__icon {
  width: 11px;
  height: 9px;
}

.ooo-recording {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding: 1rem 1.1rem;
  border-radius: 0.85rem;
  background: #f5f7f6;
  text-decoration: none;
  color: inherit;
}

.ooo-recording:hover {
  background: #eef1f0;
}

.ooo-recording__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.ooo-recording__icon svg {
  display: block;
  width: 28px;
  height: 28px;
}

.ooo-recording__copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.ooo-recording__copy strong {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-title);
}

.ooo-recording__copy span {
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text-muted);
}

.ooo-checks {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.ooo-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 550;
  line-height: 1.4;
  color: var(--color-text-title);
}

.ooo-check svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 0.05rem;
  color: var(--color-brand);
}

.ooo-session-cta {
  width: 100%;
  justify-content: center;
}

.ooo-session-note {
  margin: 0.7rem 0 0;
  font-size: 0.8rem;
  line-height: 1.4;
  text-align: center;
  color: var(--color-text-muted);
}

.ooo-quote {
  padding: clamp(1.25rem, 2.5vw, 1.6rem);
  border: 0;
  border-radius: 1.25rem;
  background: #eaf6ed;
  box-shadow: none;
}

.ooo-quote__title {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text-title);
}

.ooo-quote .mkt-quote__stars {
  margin-bottom: 0.15rem;
}

.ooo-quote .mkt-quote__author {
  padding-top: 0.85rem;
  border-top-color: rgba(5, 122, 68, 0.14);
}

.ooo-quote .mkt-quote__avatar {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.8rem;
  font-weight: 700;
}

@media (max-width: 47.99rem) {
  .ooo-hero .mkt-hero__panel {
    padding: 0.75rem 0.58rem;
  }

  .ooo-hero__title {
    font-size: clamp(1.85rem, 7.2vw, 2.35rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
  }

  .ooo-hero .mkt-hero__copy {
    align-items: flex-start;
    text-align: left;
    max-width: none;
  }

  .ooo-hero__points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    justify-items: center;
    gap: 0.85rem 0.55rem;
  }

  .ooo-hero__point {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .ooo-hero__point-icon {
    width: 64px;
    height: 64px;
  }

  .ooo-hero__point-icon svg {
    width: 44px;
    height: 44px;
  }

  .ooo-hero__point-label {
    max-width: 6.8rem;
  }

  .ooo-date {
    gap: 0.65rem;
  }

  .ooo-visual {
    min-height: 0;
    padding: 0;
  }

  .ooo-board {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }

  .ooo-board__card--score,
  .ooo-board__card--ratios,
  .ooo-board__card--compare {
    margin: 0;
  }

  .ooo-board__aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .ooo-board__value strong {
    font-size: 1.35rem;
  }

  .ooo-board__table {
    font-size: 0.75rem;
  }
}

@media (min-width: 56rem) {
  .ooo-hero .mkt-hero__layout,
  .ooo-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: stretch;
  }

  .ooo-hero .mkt-hero__panel,
  .ooo-hero .mkt-hero__media {
    min-width: 0;
    align-self: stretch;
    height: auto;
  }

  .ooo-hero .mkt-hero__panel {
    justify-content: flex-start;
    padding: 1.5rem 1.375rem;
  }

  .ooo-hero .mkt-hero__media {
    display: flex;
  }

  .ooo-hero .ooo-visual {
    flex: 1 1 auto;
    width: 100%;
    min-height: 100%;
    height: auto;
    padding: 0;
  }

  .ooo-hero .ooo-board {
    gap: 0.65rem;
  }

  .ooo-hero .ooo-board__card {
    padding: 0.65rem 0.75rem 0.6rem;
  }

  .ooo-card--webinars,
  .ooo-stack {
    height: 100%;
  }

  .ooo-card--session {
    flex: 1 1 auto;
  }
}
