*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--pond-color-bg);
  color: var(--pond-color-text);
  font-family: var(--pond-font-body);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

ul {
  margin: 0;
  padding: 0;
}

.pond-body {
  min-height: 100vh;
}

.pond-main {
  display: block;
}

.pond-shell {
  width: min(100% - 2rem, var(--pond-shell-width));
  margin: 0 auto;
}

.pond-shell--narrow {
  width: min(100% - 2rem, var(--pond-shell-narrow));
}

.pond-section {
  padding: var(--pond-space-9) 0;
}

.pond-section--muted {
  background: linear-gradient(180deg, rgba(201, 244, 214, 0.4), rgba(255, 255, 255, 0));
}

.pond-eyebrow {
  margin: 0 0 var(--pond-space-3);
  color: var(--pond-color-primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pond-section-heading {
  max-width: 48rem;
  margin-bottom: var(--pond-space-6);
}

.pond-section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pond-section-heading__title,
.pond-page-hero__title,
.pond-hero__title {
  margin: 0;
  font-family: var(--pond-font-hero);
  line-height: var(--pond-type-hero-line);
  letter-spacing: var(--pond-type-hero-tracking);
}

.pond-section-heading__title {
  font-size: clamp(2rem, 3vw, 3rem);
}

.pond-section-heading__description,
.pond-page-hero__description,
.pond-hero__description,
.pond-card__description,
.pond-cta-band__description,
.pond-account-panel__copy,
.pond-rich-text p {
  color: var(--pond-color-text-muted);
}

.pond-section-heading__description {
  margin: var(--pond-space-3) 0 0;
  font-size: 1.05rem;
}

.pond-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.875rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--pond-color-primary);
  color: var(--pond-color-surface);
  cursor: pointer;
  font-family: var(--pond-font-button);
  font-size: var(--pond-type-shell-button-size);
  line-height: var(--pond-type-shell-button-line);
  letter-spacing: var(--pond-type-shell-button-tracking);
  font-weight: 700;
  transition: transform var(--pond-transition), background var(--pond-transition), border-color var(--pond-transition), color var(--pond-transition), box-shadow var(--pond-transition);
}

.pond-button:hover {
  background: var(--pond-color-control-accent-hover);
  transform: translateY(-1px);
}

.pond-button:focus-visible,
.pond-button.is-selected,
.pond-button.is-active,
.pond-button[aria-pressed="true"] {
  background: var(--pond-color-control-accent-hover);
  color: var(--pond-color-control-accent-soft-text);
  outline: 2px solid rgb(var(--pond-color-control-accent-rgb) / 0.28);
  outline-offset: 3px;
}

.pond-button:active {
  transform: translateY(0) scale(0.98);
}

.pond-button:disabled,
.pond-button[aria-disabled="true"],
.pond-button.is-disabled {
  background: var(--pond-color-control-accent-soft-disabled);
  color: var(--pond-color-control-accent-soft-text);
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}

.pond-button--ghost {
  border-color: var(--pond-color-primary);
  background: var(--pond-color-surface);
  color: var(--pond-color-primary);
}

.pond-button--ghost:hover,
.pond-button--ghost:focus-visible {
  border-color: var(--pond-color-control-accent-hover);
  background: var(--pond-color-control-secondary-hover);
  color: var(--pond-color-control-accent-hover);
}

.pond-button--ghost.is-selected,
.pond-button--ghost.is-active,
.pond-button--ghost[aria-pressed="true"] {
  border-color: var(--pond-color-control-accent-hover);
  background: var(--pond-color-control-secondary-hover);
  color: var(--pond-color-control-accent-hover);
}

.pond-button--ghost:disabled,
.pond-button--ghost[aria-disabled="true"],
.pond-button--ghost.is-disabled {
  border-color: var(--pond-color-control-accent-disabled);
  background: var(--pond-color-surface);
  color: var(--pond-color-control-accent-disabled);
}

.pond-button--light {
  background: var(--pond-color-surface);
  color: var(--pond-color-primary);
}

.pond-button--light:hover,
.pond-button--light:focus-visible {
  background: var(--pond-color-control-secondary-hover);
  color: var(--pond-color-control-accent-hover);
}

.pond-button--light.is-selected,
.pond-button--light.is-active,
.pond-button--light[aria-pressed="true"] {
  background: var(--pond-color-control-secondary-hover);
  color: var(--pond-color-control-accent-hover);
}

.pond-button--ghost-light {
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
  color: var(--pond-color-surface);
}

.pond-button--ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.pond-button--large {
  min-height: 3.5rem;
  padding-inline: 1.6rem;
}

.pond-button--full {
  width: 100%;
}

.pond-link {
  color: var(--pond-color-control-link);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color var(--pond-transition), text-decoration-color var(--pond-transition);
}

.pond-link:hover,
.pond-link:focus-visible,
.pond-link.is-selected,
.pond-link.is-active,
.pond-link[aria-pressed="true"] {
  color: var(--pond-color-control-link-hover);
  outline: none;
}

.pond-link:disabled,
.pond-link[aria-disabled="true"],
.pond-link.is-disabled {
  color: var(--pond-color-control-link-disabled);
  pointer-events: none;
}

.pond-link--back {
  display: inline-flex;
  margin-bottom: var(--pond-space-5);
}

.pond-shell-nav-label {
  font-family: var(--pond-font-ui);
  font-size: var(--pond-type-shell-nav-size);
  line-height: var(--pond-type-shell-nav-line);
  letter-spacing: var(--pond-type-shell-nav-tracking);
  font-weight: 600;
}

.pond-shell-button-label {
  font-family: var(--pond-font-button);
  font-size: var(--pond-type-shell-button-size);
  line-height: var(--pond-type-shell-button-line);
  letter-spacing: var(--pond-type-shell-button-tracking);
  font-weight: 600;
}

.pond-shell-mobile-link {
  font-family: var(--pond-font-ui);
  letter-spacing: var(--pond-type-shell-nav-tracking);
}

.pond-shell-beta-badge {
  display: inline-flex;
  min-height: 20px;
  margin-left: 8px;
  align-items: center;
  justify-content: center;
  border: 1px solid #057b46;
  border-radius: 32px;
  padding: 2px 8px;
  color: #057b46;
  font-family: var(--pond-font-ui);
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
}

.pond-shell-home-icon,
.pond-shell-home-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

.pond-shell-home-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.pond-shell-home-icon svg {
  overflow: visible;
  transform: scale(1);
  transform-origin: center;
}

.pond-shell-dropdown-menu {
  left: 0;
  top: calc(100% + 0.5rem);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.pond-shell-dropdown-menu a {
  border-bottom: 1px solid #f4f8f8;
}

.pond-shell-dropdown-menu a:last-child {
  border-bottom: none;
}

@media (max-width: 991px) {
  [data-pond-shell] {
    position: sticky;
  }

  [data-pond-shell] [data-pond-shell-inner] {
    padding-inline: 16px;
  }

  [data-pond-shell] [data-pond-shell-row] {
    min-height: 56px;
    justify-content: flex-start;
    gap: 16px;
    padding-block: 0;
  }

  [data-pond-shell] [data-pond-menu-toggle] {
    display: inline-flex;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    padding: 0;
  }

  [data-pond-shell] [data-pond-menu-toggle] span {
    background-color: #3d4e53;
  }

  [data-pond-shell] [data-pond-shell-brand] {
    display: flex;
    flex: 0 0 171px;
    align-items: center;
  }

  [data-pond-shell] [data-pond-shell-brand] img {
    width: 58px;
    height: auto;
    max-width: none;
  }

  [data-pond-shell] [data-pond-shell-actions] {
    margin-left: auto;
    gap: 8px;
  }

  [data-pond-shell] [data-pond-shell-auth] {
    height: 36px;
    border-radius: 9999px;
    white-space: nowrap;
  }

  [data-pond-shell] [data-pond-shell-auth="login"] {
    border-color: var(--pond-color-text);
    background: var(--pond-color-surface);
    color: var(--pond-color-text);
  }

  [data-pond-shell] [data-pond-shell-auth="login"],
  [data-pond-shell] [data-pond-shell-auth="signup"],
  [data-pond-shell] [data-pond-shell-auth="account"] {
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
    will-change: transform;
  }

  [data-pond-shell] [data-pond-shell-auth="login"]:hover,
  [data-pond-shell] [data-pond-shell-auth="signup"]:hover,
  [data-pond-shell] [data-pond-shell-auth="account"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 22, 29, 0.12);
  }

  [data-pond-shell] [data-pond-shell-auth="login"]:hover,
  [data-pond-shell] [data-pond-shell-auth="login"]:focus-visible {
    border-color: var(--pond-color-control-accent-hover);
    background: var(--pond-color-control-secondary-hover);
    color: var(--pond-color-control-accent-hover);
  }

  [data-pond-shell] [data-pond-shell-auth="signup"]:hover,
  [data-pond-shell] [data-pond-shell-auth="signup"]:focus-visible,
  [data-pond-shell] [data-pond-shell-auth="account"]:hover,
  [data-pond-shell] [data-pond-shell-auth="account"]:focus-visible {
    background: var(--pond-color-control-accent-hover);
    color: var(--pond-color-control-accent-soft-text);
  }

  [data-pond-shell] [data-pond-shell-auth="login"]:focus-visible,
  [data-pond-shell] [data-pond-shell-auth="signup"]:focus-visible,
  [data-pond-shell] [data-pond-shell-auth="account"]:focus-visible {
    outline: 2px solid var(--pond-color-primary);
    outline-offset: 3px;
  }

  [data-pond-shell] [data-pond-menu-panel] {
    position: absolute;
    z-index: 60;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 100vh;
    margin: 0;
    border-radius: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  [data-pond-shell] [data-pond-menu-panel] > div:first-child {
    min-height: 46px;
    padding: 16px;
  }

  [data-pond-shell] [data-pond-menu-panel] > div:first-child img {
    width: 58px;
    height: auto;
    max-width: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  [data-pond-shell] [data-pond-shell-row] {
    min-height: 84px;
  }

  [data-pond-shell] [data-pond-shell-brand] img {
    width: 90px;
  }
}

.pond-top-banner,
.auto-detail-breadcrumbs,
.ri-breadcrumbs,
.research-detail-breadcrumbs,
.expert-advisors-breadcrumbs,
.about-magic__breadcrumbs {
  background: var(--pond-color-banner);
}

.pond-top-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: var(--pond-shell-wide);
  min-height: 3rem;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  color: #fff;
}

.pond-top-banner__item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  min-width: 0;
}

.pond-top-banner__item strong {
  font-weight: 600;
}

.pond-top-banner__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.pond-top-banner__icon--value {
  line-height: 0;
}

@media (min-width: 768px) {
  .pond-top-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-inline: 2rem;
  }

  .pond-top-banner__item--primary {
    flex: 1 1 auto;
  }
}

.pond-shell-promo-copy {
  font-family: var(--pond-font-body);
  color: inherit;
  line-height: var(--pond-type-copy-line);
}

.pond-shell-promo-copy .lucide {
  overflow: visible;
  flex-shrink: 0;
}

.pond-surface-frame {
  width: 100%;
  margin: 0 auto;
  padding-inline: var(--pond-surface-frame-inset-mobile);
}

.pond-surface-card {
  width: 100%;
  overflow: hidden;
  border-radius: var(--pond-surface-card-radius);
}

.pond-surface-card--lg {
  border-radius: var(--pond-surface-card-radius-lg);
}

.pond-home-hero__frame {
  padding: 12px;
  background: #fff;
}

.pond-home-hero__layout {
  position: relative;
  display: grid;
  align-items: center;
  gap: 2rem;
  padding: 2rem 1rem;
}

.pond-home-hero__content {
  max-width: 700px;
}

.pond-home-hero__art {
  display: block;
  height: 360px;
  margin-top: 2rem;
  overflow: hidden;
}

.pond-home-hero__art-frame {
  position: relative;
  height: 430px;
  max-width: 330px;
  margin: 0 auto;
  overflow: hidden;
}

.pond-home-hero__art-phone-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pond-home-hero__copy {
  margin-top: 1rem;
  font-family: var(--pond-font-body);
  font-weight: 600;
  color: var(--pond-color-hero-copy);
  font-size: 1rem;
  line-height: 1.4;
}

.pond-home-hero__title {
  font-family: var(--pond-font-hero);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: 0;
}

.pond-home-hero__title span:last-child {
  font-weight: 700;
}

.pond-home-hero__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.pond-home-hero__form-row {
  display: grid;
  gap: 16px;
}

.pond-home-hero__form-row label {
  position: relative;
  display: block;
  min-width: 0;
}

.pond-home-hero__form-row:not(.pond-home-hero__form-row--actions) {
  grid-template-columns: 1fr;
}

.pond-home-hero__form-row--actions {
  margin-top: 0.75rem;
}

.pond-home-hero__field {
  display: block;
  width: 100%;
  height: 70px;
  padding-left: 52px;
  padding-right: 56px;
  border: 0;
  border-radius: 72px;
  background: #fff;
  color: #3d4e53;
  box-shadow: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.pond-home-hero__field--select {
  overflow: hidden;
  padding: 0 56px 0 52px;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pond-home-hero__field--select option {
  min-height: 44px;
  padding: 12px 24px;
  line-height: 1.6;
}

.pond-home-hero__field-icon {
  position: absolute;
  display: inline-flex;
  left: 24px;
  top: 50%;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  align-items: center;
  justify-content: center;
  color: #3d4e53;
  pointer-events: none;
  transform: translateY(-50%);
  z-index: 1;
}

.pond-home-hero__field-icon svg {
  display: none;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.pond-home-hero__field-icon[data-active-category="auto"] [data-home-hero-category-symbol="auto"],
.pond-home-hero__field-icon[data-active-category="home"] [data-home-hero-category-symbol="home"],
.pond-home-hero__field-icon[data-active-category="renters"] [data-home-hero-category-symbol="renters"],
.pond-home-hero__field-icon[data-active-category="condo"] [data-home-hero-category-symbol="condo"],
.pond-home-hero__field-icon[data-active-category="bundle"] [data-home-hero-category-symbol="bundle"] {
  display: block;
}

.pond-home-hero__field-caret {
  position: absolute;
  display: inline-flex;
  right: 24px;
  top: 50%;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  align-items: center;
  justify-content: center;
  color: #3d4e53;
  pointer-events: none;
  transform: translateY(-50%);
  z-index: 1;
}

.pond-home-hero__field-caret svg {
  display: block;
  width: 16.173px;
  height: 10px;
  flex: 0 0 auto;
}

.pond-home-hero__zip-shell {
  display: flex;
  width: 100%;
  min-width: 0;
  align-items: center;
  gap: 8px;
  height: 70px;
  border: 0;
  border-radius: 72px;
  background: #fff;
  padding: 4px 16px;
}

.pond-home-hero__zip-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  align-items: center;
  justify-content: center;
  color: #3d4e53;
}

.pond-home-hero__zip-icon-img {
  display: block;
  width: 11px;
  height: 16px;
  max-width: none;
  flex: 0 0 auto;
}

.pond-home-hero__zip-input {
  min-width: 0;
  flex: 1 1 auto;
  color: #3d4e53;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.pond-home-hero__zip-input::placeholder {
  color: #3d4e53;
  opacity: 1;
}

.pond-home-hero__zip-shell:focus-within {
  border-color: var(--pond-color-primary-dark);
  outline: 2px solid var(--pond-color-primary-dark);
  outline-offset: 3px;
}

.pond-home-hero__cta-icon {
  display: block;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
}

.pond-home-hero__cta {
  height: 70px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  border: 0;
  box-shadow: none;
  gap: 8px;
  padding: 24px 44px;
}

.pond-home-hero__cta:disabled,
.pond-home-hero__cta[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.65;
}

.pond-home-hero__cta--primary:disabled,
.pond-home-hero__cta--primary[aria-disabled="true"],
.pond-home-hero__cta--primary.blur-loader-btn {
  background-color: var(--pond-color-primary-dark);
}

.pond-home-hero__cta.blur-loader-btn {
  cursor: progress;
  opacity: 0.75;
}

.research-zip-error {
  margin: 8px 0 0 24px;
  color: #b42318;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.research-zip-error[hidden] {
  display: none;
}

.pond-home-hero__zip-error {
  margin-top: -4px;
}

.pond-home-hero__chat-link {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 0;
  border: 0;
  background: transparent;
  color: var(--pond-color-control-link);
  cursor: pointer;
  font-family: var(--pond-font-button);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  padding: 0;
}

.pond-home-hero__chat-link:hover,
.pond-home-hero__chat-link:focus-visible,
.pond-home-hero__chat-link.is-selected,
.pond-home-hero__chat-link[aria-pressed="true"] {
  color: var(--pond-color-control-link-hover);
  outline: none;
}

.pond-home-hero__chat-icon {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

button.pond-ollie-prompt-pill {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  border: 1px solid var(--pond-color-primary);
  border-radius: 60px;
  background: #fff;
  color: #00161d;
  padding: 8px 12px;
  font-family: var(--pond-font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  transition: background-color var(--pond-transition), border-color var(--pond-transition), color var(--pond-transition), box-shadow var(--pond-transition);
}

button.pond-ollie-prompt-pill:hover,
button.pond-ollie-prompt-pill:focus-visible,
button.pond-ollie-prompt-pill.is-selected,
button.pond-ollie-prompt-pill.is-active,
button.pond-ollie-prompt-pill[aria-pressed="true"] {
  border-color: #057b46;
  background: #e6f7f0;
  color: #00161d;
  box-shadow: 0 8px 18px rgb(var(--pond-color-control-accent-rgb) / 0.12);
  outline: none;
}

button.pond-ollie-prompt-pill:focus-visible {
  box-shadow: 0 8px 18px rgb(var(--pond-color-control-accent-rgb) / 0.12), 0 0 0 3px rgb(var(--pond-color-control-accent-rgb) / 0.18);
}

button.pond-ollie-prompt-pill:active {
  transform: translateY(0) scale(0.98);
}

button.pond-ollie-prompt-pill [data-pond-ollie-prompt-star] {
  display: block;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  color: var(--pond-color-primary);
}

button.pond-ollie-prompt-pill:hover [data-pond-ollie-prompt-star],
button.pond-ollie-prompt-pill:focus-visible [data-pond-ollie-prompt-star],
button.pond-ollie-prompt-pill.is-selected [data-pond-ollie-prompt-star],
button.pond-ollie-prompt-pill.is-active [data-pond-ollie-prompt-star],
button.pond-ollie-prompt-pill[aria-pressed="true"] [data-pond-ollie-prompt-star] {
  color: #057b46;
}

button.pond-ollie-prompt-pill:disabled,
button.pond-ollie-prompt-pill[aria-disabled="true"],
button.pond-ollie-prompt-pill.is-disabled {
  border-color: var(--pond-color-control-accent-disabled);
  background: var(--pond-color-surface);
  color: var(--pond-color-control-accent-disabled);
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}

@media (max-width: 767px) {
  .pond-pill-carousel {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: center;
    gap: 8px;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding-right: 16px;
    padding-bottom: 4px;
    scroll-padding-right: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .pond-pill-carousel::-webkit-scrollbar {
    display: none;
  }

  .pond-pill-carousel > .pond-ollie-prompt-pill,
  .pond-pill-carousel .pond-ollie-prompt-pill {
    flex: 0 0 auto;
    scroll-snap-align: start;
    white-space: nowrap;
  }
}

.pond-home-hero__art-frame,
.pond-home-hero__art-phone-frame,
.pond-home-hero__image {
  width: 100%;
  display: block;
}

.pond-home-hero__image {
  position: absolute;
  top: 0;
  left: 50%;
  height: auto;
  max-width: none;
  transform: translateX(-50%);
  transform-origin: top left;
}

@media (min-width: 576px) {
  .pond-home-hero__layout {
    padding-inline: 2rem;
  }

  .pond-home-hero__form-row {
    grid-template-columns: 1fr;
  }

  .pond-home-hero__art-frame {
    max-width: 400px;
  }
}

@media (min-width: 768px) {
  .pond-home-hero__title {
    font-size: 3.25rem;
  }

  .pond-home-hero__art-frame {
    max-width: 500px;
  }
}

@media (max-width: 991px) {
  .pond-home-hero__card {
    overflow: hidden;
    border-radius: 24px;
  }

  .pond-home-hero__layout {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    overflow: hidden;
    padding: 32px 16px 301px;
  }

  .pond-home-hero__content {
    width: 100%;
    max-width: none;
  }

  .pond-home-hero__art {
    position: absolute;
    bottom: 0;
    left: 50%;
    flex: 0 0 auto;
    width: 206px;
    height: 301px;
    margin: 0;
    overflow: hidden;
    transform: translateX(-50%);
  }

  .pond-home-hero__art-frame,
  .pond-home-hero__art-phone-frame {
    width: 100%;
    height: 100%;
    max-width: none;
    overflow: hidden;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .pond-home-hero__layout {
    padding-inline: 24px;
  }

  .pond-home-hero__art {
    width: 240px;
    height: 301px;
  }
}

@media (min-width: 992px) {
  .pond-surface-frame {
    padding-inline: var(--pond-surface-frame-inset-desktop);
  }

  [data-pond-shell] [data-pond-shell-inner] {
    max-width: var(--pond-home-desktop-frame);
    padding-inline: 44px;
  }

  [data-pond-shell] [data-pond-shell-row] {
    justify-content: flex-start;
    gap: var(--pond-home-shell-row-gap);
    min-height: var(--pond-home-shell-row-height);
    padding-block: 0;
  }

  [data-pond-shell] [data-pond-shell-brand] {
    display: flex;
    flex: 0 0 var(--pond-home-shell-brand-width);
    width: var(--pond-home-shell-brand-width);
    align-items: center;
  }

  [data-pond-shell] [data-pond-shell-brand] img {
    width: 90px;
    height: auto;
    max-width: none;
  }

  [data-pond-shell] [data-pond-shell-nav] {
    display: flex;
    flex: 1 0 0;
    align-items: stretch;
    justify-content: space-evenly;
    min-width: 0;
    height: var(--pond-home-shell-row-height);
  }

  [data-pond-shell] .pond-shell-nav-label {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0;
    font-weight: 600;
  }

  [data-pond-shell] [data-pond-shell-item] {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 auto;
    height: var(--pond-home-shell-row-height);
    padding-inline: var(--pond-home-shell-nav-pad-x);
    white-space: nowrap;
  }

  [data-pond-shell] summary[data-pond-shell-item] {
    gap: 8px;
  }

  [data-pond-shell] [data-pond-shell-item="home-icon"] {
    width: var(--pond-home-shell-icon-width);
    justify-content: center;
    padding-inline: 0;
  }

  .pond-shell-dropdown-menu {
    left: 5px;
    top: 57px;
  }

  [data-pond-shell] [data-pond-shell-item="home-icon"] ~ [data-pond-shell-item] {
    width: auto;
  }

  [data-pond-shell] [data-pond-shell-actions] {
    gap: var(--pond-home-shell-actions-gap);
    height: var(--pond-home-shell-row-height);
  }

  [data-pond-shell] [data-pond-shell-auth] {
    height: var(--pond-home-shell-action-height);
    padding-inline: var(--pond-home-shell-action-padding-x);
    border-radius: var(--pond-home-shell-action-radius);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    white-space: nowrap;
  }

  [data-pond-shell] [data-pond-shell-auth="login"] {
    width: var(--pond-home-shell-login-width);
    border-color: var(--pond-color-text);
    background: var(--pond-color-surface);
    color: var(--pond-color-text);
  }

  [data-pond-shell] [data-pond-shell-auth="signup"] {
    width: var(--pond-home-shell-signup-width);
  }

  [data-pond-shell] [data-pond-shell-auth="login"]:hover,
  [data-pond-shell] [data-pond-shell-auth="login"]:focus-visible {
    border-color: var(--pond-color-control-accent-hover);
    background: var(--pond-color-control-secondary-hover);
    color: var(--pond-color-control-accent-hover);
  }

  [data-pond-shell] [data-pond-shell-auth="signup"]:hover,
  [data-pond-shell] [data-pond-shell-auth="signup"]:focus-visible,
  [data-pond-shell] [data-pond-shell-auth="account"]:hover,
  [data-pond-shell] [data-pond-shell-auth="account"]:focus-visible {
    background: var(--pond-color-control-accent-hover);
    color: var(--pond-color-control-accent-soft-text);
  }

  .pond-top-banner__inner {
    max-width: var(--pond-home-desktop-frame);
    min-height: 56px;
    padding: 17px var(--pond-home-desktop-banner-padding);
    gap: 0;
  }

  .pond-top-banner__item {
    gap: 8px;
  }

  .pond-top-banner__icon {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
  }

  .pond-top-banner__item--secondary {
    flex: 0 0 443px;
    width: 443px;
  }

  .pond-shell-promo-copy {
    font-size: 16px;
    line-height: 22px;
  }

  .pond-home-hero__frame {
    padding: 12px;
  }

  .pond-home-hero__card {
    min-height: 560px;
    border-radius: var(--pond-home-hero-card-radius);
  }

  .pond-home-hero__layout {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: calc(var(--pond-home-desktop-frame) - (var(--pond-home-hero-card-inset) * 2));
    margin: 0 auto;
    min-height: 560px;
    padding-inline: var(--pond-home-hero-card-inset);
    gap: 0;
  }

  .pond-home-hero__content {
    position: relative;
    top: auto;
    left: auto;
    flex: 0 0 var(--pond-home-hero-content-width);
    width: var(--pond-home-hero-content-width);
    max-width: none;
    padding-inline: 12px;
  }

  .pond-home-hero__headline-copy,
  .pond-home-hero__copy,
  .pond-home-hero__form {
    width: 100%;
    max-width: none;
  }

  .pond-home-hero__title {
    font-size: var(--pond-home-hero-title-size);
    line-height: 1.1;
    letter-spacing: var(--pond-type-hero-tracking);
    font-weight: 800;
  }

  .pond-home-hero__copy {
    margin-top: 24px;
    font-size: var(--pond-home-hero-copy-size);
    line-height: var(--pond-home-hero-copy-line);
    font-weight: 500;
  }

  .pond-home-hero__form {
    display: grid;
    grid-template-columns: 328px minmax(0, 348px);
    margin-top: 24px;
    gap: 12px;
  }

  .pond-home-hero__form-row {
    display: contents;
  }

  .pond-home-hero__field {
    height: 79px;
    border: 0;
    border-radius: 72px;
    font-size: 18px;
    font-weight: 700;
  }

  .pond-home-hero__field--select {
    padding: 0 48px 0 40px;
  }

  .pond-home-hero__field-icon {
    left: 16px;
  }

  .pond-home-hero__field-caret {
    right: 16px;
  }

  .pond-home-hero__zip-shell {
    position: relative;
    grid-column: 2;
    grid-row: 1;
    height: 79px;
    justify-content: space-between;
    border: 0;
    border-radius: 72px;
    gap: 8px;
    padding: 4px 186px 4px 16px;
  }

  .pond-home-hero__zip-input {
    font-size: 18px;
    font-weight: 700;
  }

  .pond-home-hero__form > .pond-home-hero__cta {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: end;
    z-index: 1;
    width: auto;
    min-width: 174px;
    height: 71px;
    flex: 0 0 auto;
    gap: 8px;
    margin-right: 4px;
    padding: 24px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
  }

  .pond-home-hero__chat-link {
    grid-column: 1 / -1;
    grid-row: 3;
    width: auto;
    justify-content: flex-start;
    color: #0ca35d;
  }

  .pond-home-hero__zip-error {
    grid-column: 2;
    grid-row: 2;
    margin: -8px 0 0 24px;
  }

  .pond-home-hero__art {
    position: absolute;
    top: -43px;
    right: 12px;
    left: auto;
    flex: 0 0 auto;
    width: 687.46px;
    height: 912.185px;
    margin: 0;
    display: block;
    transform: none;
    pointer-events: none;
  }

  .pond-home-hero__art-frame {
    width: 100%;
    height: 100%;
    max-width: none;
    overflow: hidden;
  }

  .pond-home-hero__art-phone-frame {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: none;
    overflow: hidden;
    transform: none;
  }

  .pond-home-hero__image {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: initial;
    object-position: top center;
    transform: translateX(-50%);
  }

  [data-pond-shell] .pond-shell-home-icon svg {
    transform: scale(1);
  }
}

@media (max-width: 767px) {
  .pond-home-hero__card {
    height: auto;
    min-height: 0;
    border-radius: 24px;
  }

  .pond-home-hero__layout {
    position: relative;
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    overflow: hidden;
    padding: 32px 16px 193px;
  }

  .pond-home-hero__copy {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
  }

  .pond-home-hero__form {
    margin-top: 16px;
    gap: 12px;
  }

  .pond-home-hero__form-row {
    gap: 16px;
  }

  .pond-home-hero__field,
  .pond-home-hero__zip-shell,
  .pond-home-hero__cta {
    height: 70px;
  }

  .pond-home-hero__field,
  .pond-home-hero__zip-input {
    font-size: 16px;
    font-weight: 600;
  }

  .pond-home-hero__zip-shell {
    padding: 4px 16px;
  }

  .pond-home-hero__cta {
    width: 100%;
    justify-content: center;
    padding: 24px 44px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
  }

  .pond-home-hero__chat-link {
    justify-content: center;
    margin-top: 0;
    color: #0ca35d;
  }

  .pond-home-hero__art {
    width: 206px;
    height: 301px;
    margin: 0;
    overflow: hidden;
  }

  .pond-home-hero__art-frame {
    width: 100%;
    height: 100%;
    max-width: none;
    position: relative;
    overflow: hidden;
  }

  .pond-home-hero__art-phone-frame {
    position: relative;
    top: 0;
    right: auto;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform: none;
  }

  .pond-home-hero__image {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: auto;
    object-fit: initial;
    object-position: top center;
    transform: translateX(-50%);
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  [data-pond-shell] [data-pond-shell-inner] {
    padding-inline: 56px;
  }

  [data-pond-shell] [data-pond-shell-brand] img {
    width: 90px;
    height: auto;
  }

  [data-pond-shell] .pond-shell-nav-label,
  [data-pond-shell] [data-pond-shell-auth] {
    font-size: 13px;
    font-weight: 500;
  }

  [data-pond-shell] [data-pond-shell-item="research"],
  [data-pond-shell] [data-pond-shell-item="about"] {
    font-family: var(--pond-font-ui);
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0;
    font-weight: 500;
  }

  [data-pond-shell] .pond-shell-home-icon svg {
    transform: scale(1);
  }

  .pond-top-banner__inner {
    padding: 17px 16px;
  }

  .pond-home-hero__card {
    border-radius: var(--pond-home-hero-card-radius);
  }

  .pond-home-hero__content {
    flex-basis: 560px;
    width: 560px;
    margin-left: 0;
    padding-inline: 0;
  }

  .pond-home-hero__headline-copy,
  .pond-home-hero__copy,
  .pond-home-hero__form {
    grid-template-columns: 250px minmax(0, 298px);
    width: min(100%, 560px);
    max-width: 560px;
  }

  .pond-home-hero__zip-shell {
    padding-right: 164px;
  }

  .pond-home-hero__form > .pond-home-hero__cta {
    min-width: 160px;
    padding-inline: 24px;
  }

  .pond-home-hero__title {
    font-size: 48px;
    line-height: 1.02;
    letter-spacing: 0;
    font-weight: 800;
  }

  .pond-home-hero__copy {
    font-size: 16px;
    line-height: 1.35;
  }

  .pond-home-hero__art {
    position: absolute;
    top: 0px;
    right: 0;
    left: auto;
    flex-basis: auto;
    width: 516px;
    height: 684px;
    margin: 0;
    transform: none;
    pointer-events: none;
  }

  .pond-home-hero__art-frame {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .pond-home-hero__art-phone-frame {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: none;
    transform: none;
    overflow: hidden;
  }

  .pond-home-hero__image {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: auto;
    object-fit: initial;
    object-position: top center;
    transform: translateX(-50%);
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .pond-home-hero__card {
    overflow: hidden;
    border-radius: 24px;
  }

  .pond-home-hero__layout {
    position: relative;
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    overflow: hidden;
    padding: 32px 24px 193px;
  }

  .pond-home-hero__content {
    width: 100%;
    max-width: none;
    margin-left: 0;
    padding-inline: 0;
  }

  .pond-home-hero__headline-copy,
  .pond-home-hero__copy,
  .pond-home-hero__form {
    width: 100%;
    max-width: none;
  }

  .pond-home-hero__art {
    position: absolute;
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    width: 240px;
    height: 301px;
    margin: 0;
    overflow: hidden;
    transform: translateX(-50%);
  }

  .pond-home-hero__art-frame,
  .pond-home-hero__art-phone-frame {
    width: 100%;
    height: 100%;
    max-width: none;
    overflow: hidden;
  }
}

.pond-detail-hero__card {
  position: relative;
}

.pond-breadcrumb-copy {
  font-family: var(--pond-font-ui);
  font-size: var(--pond-type-breadcrumb-size);
  line-height: var(--pond-type-breadcrumb-line);
  letter-spacing: var(--pond-type-breadcrumb-tracking);
  font-weight: 700;
  text-transform: uppercase;
  color: inherit;
}

.pond-breadcrumb-icon,
.pond-breadcrumb-divider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: inherit;
}

.pond-breadcrumb-icon {
  width: 16px;
  height: 16px;
}

.pond-breadcrumb-icon svg,
.pond-breadcrumb-divider svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.pond-breadcrumb-divider {
  width: 6px;
  height: 9px;
}

.pond-breadcrumb-link,
.pond-breadcrumb-current {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.pond-hero-display {
  font-family: var(--pond-font-hero);
  color: var(--pond-color-hero-headline);
  line-height: var(--pond-type-hero-line);
  letter-spacing: var(--pond-type-hero-tracking);
}

.pond-auth-title {
  font-family: var(--pond-font-hero);
  color: var(--pond-color-text);
  line-height: var(--pond-type-auth-title-line);
  letter-spacing: var(--pond-type-auth-title-tracking);
}

.pond-auth-copy,
.pond-auth-label,
.pond-auth-field,
.pond-auth-button {
  font-family: var(--pond-font-ui);
}

.pond-auth-label {
  color: var(--pond-color-text-muted);
  line-height: var(--pond-type-copy-line);
}

.pond-auth-copy {
  color: var(--pond-color-text-muted);
}

.pond-auth-field {
  color: var(--pond-color-text);
  border-color: var(--pond-color-border);
}

.pond-auth-field::placeholder {
  color: var(--pond-color-text-subtle);
}

.pond-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.pond-header--marketing {
  background: rgba(246, 251, 248, 0.92);
  border-bottom: 1px solid rgba(11, 153, 77, 0.08);
}

.pond-header--inside {
  background: rgba(9, 33, 19, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pond-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--pond-space-5);
  min-height: 5.25rem;
}

.pond-brand {
  display: inline-flex;
  align-items: center;
}

.pond-brand__logo {
  height: 2.2rem;
  width: auto;
}

.pond-nav {
  display: flex;
  align-items: center;
  gap: var(--pond-space-4);
}

.pond-nav__link,
.pond-nav__dropdown summary {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  color: inherit;
  font-weight: 600;
  cursor: pointer;
}

.pond-header--inside .pond-nav__link,
.pond-header--inside .pond-nav__dropdown summary {
  color: var(--pond-color-shell-inside-copy);
}

.pond-nav__link.is-active {
  color: var(--pond-color-primary);
}

.pond-header--inside .pond-nav__link.is-active {
  color: var(--pond-color-shell-inside-active);
}

.pond-nav__dropdown {
  position: relative;
}

.pond-nav__dropdown summary::after {
  content: " +";
  opacity: 0.6;
}

.pond-nav__menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 14rem;
  padding: 0.75rem;
  border: 1px solid var(--pond-color-border);
  border-radius: var(--pond-radius-sm);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 45px -20px var(--pond-color-shadow-strong);
}

.pond-nav__menu-link {
  display: block;
  padding: 0.65rem 0.8rem;
  border-radius: 0.75rem;
  font-weight: 600;
}

.pond-nav__menu-link:hover {
  background: var(--pond-color-surface-muted);
}

.pond-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pond-mobile-nav {
  display: none;
  position: relative;
}

.pond-mobile-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  min-height: 2.85rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--pond-color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  cursor: pointer;
}

.pond-mobile-nav--inside .pond-mobile-nav__toggle {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--pond-color-surface);
}

.pond-mobile-nav__panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  width: min(22rem, 90vw);
  padding: 1rem;
  border: 1px solid var(--pond-color-border);
  border-radius: var(--pond-radius-md);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 45px -20px var(--pond-color-shadow-strong);
}

.pond-mobile-nav__group + .pond-mobile-nav__group,
.pond-mobile-nav__link + .pond-mobile-nav__link {
  margin-top: 0.6rem;
}

.pond-mobile-nav__title {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--pond-color-text-muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pond-mobile-nav__link {
  display: block;
  padding: 0.6rem 0;
  font-weight: 600;
}

.pond-mobile-nav__footer {
  display: grid;
  gap: 0.75rem;
  margin-top: var(--pond-space-5);
}

.pond-hero {
  position: relative;
  overflow: hidden;
  padding: var(--pond-space-10) 0 var(--pond-space-9);
  background:
    radial-gradient(circle at top left, rgba(11, 153, 77, 0.18), transparent 38%),
    radial-gradient(circle at 80% 20%, rgba(11, 77, 122, 0.16), transparent 28%),
    linear-gradient(180deg, var(--pond-color-surface), var(--pond-color-hero-surface-end));
}

.pond-hero::before {
  content: "";
  position: absolute;
  inset: auto -10rem -10rem auto;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 153, 77, 0.12), rgba(11, 153, 77, 0));
  pointer-events: none;
}

.pond-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: var(--pond-space-7);
  align-items: center;
}

.pond-hero__title {
  max-width: 12ch;
  font-family: var(--pond-font-display);
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.pond-hero__description {
  max-width: 38rem;
  margin: var(--pond-space-4) 0 0;
  font-size: 1.1rem;
}

.pond-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: var(--pond-space-6);
}

.pond-hero__panel,
.pond-account-panel,
.pond-product-card,
.pond-card,
.pond-faq,
.pond-cta-band {
  border: 1px solid var(--pond-color-border);
  box-shadow: 0 18px 40px -24px var(--pond-color-shadow);
}

.pond-hero__panel {
  position: relative;
  padding: 1.6rem;
  border-radius: var(--pond-radius-lg);
  background: rgba(255, 255, 255, 0.9);
}

.pond-hero__panel-label,
.pond-account-panel__eyebrow {
  margin: 0 0 var(--pond-space-3);
  color: var(--pond-color-primary);
  font-size: 0.9rem;
  font-weight: 700;
}

.pond-hero__panel-title,
.pond-account-panel__title {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.15;
}

.pond-hero__panel-copy {
  margin: var(--pond-space-3) 0 0;
  color: var(--pond-color-text-muted);
}

.pond-form {
  display: grid;
  gap: 1rem;
  margin-top: var(--pond-space-5);
}

.pond-field {
  display: grid;
  gap: 0.45rem;
}

.pond-field span {
  font-size: 0.92rem;
  font-weight: 600;
}

.pond-field input,
.pond-field select {
  min-height: 3rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--pond-color-border);
  border-radius: 1rem;
  background: var(--pond-color-surface);
  color: var(--pond-color-text);
}

.pond-field input:focus,
.pond-field select:focus {
  outline: 2px solid rgba(11, 153, 77, 0.18);
  border-color: var(--pond-color-primary);
}

.pond-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: var(--pond-space-6);
}

.pond-stats--hero {
  max-width: 42rem;
}

.pond-stat {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(11, 153, 77, 0.14);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.72);
}

.pond-stat__value {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1;
}

.pond-stat__label {
  display: block;
  margin-top: 0.5rem;
  color: var(--pond-color-text-muted);
  font-size: 0.95rem;
}

.pond-page-hero {
  padding: var(--pond-space-8) 0 var(--pond-space-6);
}

.pond-page-hero--inside {
  background:
    radial-gradient(circle at 20% 20%, rgba(156, 231, 186, 0.18), transparent 25%),
    linear-gradient(180deg, var(--pond-color-inside-hero-start), var(--pond-color-inside-hero-end));
  color: var(--pond-color-surface);
}

.pond-page-hero__title {
  max-width: 14ch;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
}

.pond-page-hero__description {
  max-width: 44rem;
  margin: var(--pond-space-4) 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.pond-page-hero__meta {
  margin: var(--pond-space-4) 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.pond-card-grid {
  display: grid;
  gap: 1.25rem;
}

.pond-card-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pond-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pond-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pond-card-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pond-card {
  height: 100%;
  padding: 1.4rem;
  border-radius: var(--pond-radius-md);
  background: var(--pond-color-surface);
}

.pond-card--accent {
  position: relative;
  overflow: hidden;
}

.pond-card--accent::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 0.35rem;
  background: var(--pond-accent, var(--pond-color-primary));
}

.pond-card--teal {
  --pond-accent: var(--pond-color-mint);
}

.pond-card--blue {
  --pond-accent: var(--pond-color-secondary);
}

.pond-card--slate {
  --pond-accent: var(--pond-color-card-accent-slate);
}

.pond-card--gold {
  --pond-accent: var(--pond-color-gold);
}

.pond-card--mint {
  --pond-accent: var(--pond-color-card-accent-mint);
}

.pond-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.85rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: var(--pond-color-primary-soft);
  color: var(--pond-color-primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.pond-card__title {
  margin: 0 0 0.6rem;
  font-size: 1.28rem;
  line-height: 1.2;
}

.pond-card--research .pond-card__title {
  font-family: var(--pond-font-hero);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
}

.pond-card__title:not(:first-child) {
  margin-top: 0.95rem;
}

.pond-card__description,
.pond-card__meta {
  margin: 0;
}

.pond-card__meta {
  margin-top: 0.85rem;
  color: var(--pond-color-text-muted);
  font-size: 0.92rem;
}

.pond-card .pond-link {
  display: inline-flex;
  margin-top: 1rem;
}

@media (max-width: 767px) {
  .pond-card--research .pond-card__title {
    font-size: 24px;
  }
}

.pond-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--pond-space-5);
}

.pond-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
  transition: background-color var(--pond-transition), border-color var(--pond-transition), color var(--pond-transition), box-shadow var(--pond-transition), transform var(--pond-transition);
}

.pond-pill:hover,
.pond-pill:focus-visible,
.pond-pill.is-selected,
.pond-pill.is-active,
.pond-pill[aria-pressed="true"] {
  border-color: rgba(156, 231, 186, 0.5);
  background: rgba(156, 231, 186, 0.14);
  color: var(--pond-color-surface);
  outline: none;
  transform: translateY(-1px);
}

.pond-pill:focus-visible {
  box-shadow: 0 0 0 3px rgb(var(--pond-color-primary-rgb) / 0.24);
}

.pond-pill:active {
  transform: translateY(0) scale(0.98);
}

.pond-toolbar {
  display: flex;
  align-items: end;
  gap: 1rem;
  margin-top: var(--pond-space-5);
}

.pond-toolbar .pond-field {
  min-width: 18rem;
}

.pond-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.pond-product-card {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--pond-radius-md);
  background: var(--pond-color-surface);
}

.pond-product-card__top,
.pond-product-card__price-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.pond-product-card__type {
  margin: 0 0 0.35rem;
  color: var(--pond-color-primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pond-product-card__provider {
  margin: 0;
  font-size: 1.45rem;
}

.pond-product-card__price {
  font-size: 2rem;
  line-height: 1;
}

.pond-product-card__rating {
  color: var(--pond-color-text-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.pond-product-card__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
}

.pond-product-card__details dt {
  color: var(--pond-color-text-muted);
  font-size: 0.9rem;
}

.pond-product-card__details dd {
  margin: 0.25rem 0 0;
  font-weight: 600;
}

.pond-product-card__strengths {
  display: grid;
  gap: 0.65rem;
  list-style: none;
}

.pond-product-card__strengths li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--pond-color-text-muted);
}

.pond-product-card__strengths li::before {
  content: "";
  position: absolute;
  top: 0.52rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--pond-color-primary);
}

.pond-faq-list {
  display: grid;
  gap: 1rem;
}

.pond-faq {
  padding: 1.15rem 1.2rem;
  border-radius: var(--pond-radius-md);
  background: var(--pond-color-surface);
}

.pond-faq__question {
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
}

.pond-faq__question::after {
  content: "+";
  float: right;
  color: var(--pond-color-primary);
}

.pond-faq[open] .pond-faq__question::after {
  content: "−";
}

.pond-faq__answer {
  padding-top: 0.85rem;
}

.pond-faq__answer p {
  margin: 0;
  color: var(--pond-color-text-muted);
}

.research-takeaway-section .research-prose ul,
.research-takeaway-section .research-prose ol {
  padding-left: 0;
  list-style-position: inside;
}

.research-takeaway-section .research-prose li {
  color: var(--pond-color-heading);
}

.research-takeaway-section .research-prose li::marker {
  color: var(--pond-color-primary);
}

.pond-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--pond-space-6);
  padding: 2rem;
  border-radius: calc(var(--pond-radius-lg) + 0.25rem);
  background: linear-gradient(135deg, var(--pond-color-cta-band-start), var(--pond-color-inside-hero-end));
  color: var(--pond-color-surface);
}

.pond-cta-band__title {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.1;
}

.pond-cta-band__description {
  max-width: 42rem;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.pond-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.pond-footer {
  border-top: 1px solid #d5dbdc;
  background: #ffffff;
  color: #7a878a;
}

.pond-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px 16px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.pond-footer__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.pond-footer__brand img {
  display: block;
  width: 130px;
  height: auto;
}

.pond-footer__social-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.pond-footer__follow,
.pond-footer__legal,
.pond-footer__address,
.pond-footer__disclaimers p {
  margin: 0;
  color: #7a878a;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
}

.pond-footer__socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pond-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  text-decoration: none;
}

.pond-footer__socials a:hover {
  opacity: 0.85;
}

.pond-footer__socials img {
  display: block;
  width: 28px;
  height: 28px;
}

.pond-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 4px;
  max-width: 1180px;
}

.pond-footer__legal a,
.pond-footer-legal-button {
  display: inline;
  width: auto;
  height: auto;
  color: inherit;
  line-height: inherit;
  text-decoration: none;
}

.pond-footer__legal a:hover,
.pond-footer-legal-button:hover {
  text-decoration: underline;
}

.pond-footer-legal-button {
  appearance: none;
  position: static !important;
  inset: auto !important;
  transform: none !important;
  z-index: auto !important;
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  font: inherit !important;
  color: inherit !important;
  text-align: inherit !important;
  cursor: pointer !important;
}

.pond-footer__address {
  max-width: 960px;
}

.pond-footer__disclaimers {
  display: grid;
  gap: 16px;
  max-width: 1320px;
}

@media (max-width: 767px) {
  .pond-footer__inner {
    max-width: 390px;
  }

  .pond-footer__brand img {
    width: 90px;
  }

  .pond-footer__legal,
  .pond-footer__address,
  .pond-footer__disclaimers {
    max-width: 358px;
  }
}

.pond-account-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  gap: var(--pond-space-6);
  align-items: start;
}

.pond-account-panel {
  padding: 1.5rem;
  border-radius: var(--pond-radius-lg);
  background: var(--pond-color-surface);
}

.pond-account-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: var(--pond-space-5);
}

.pond-account-summary__item {
  padding: 1rem;
  border-radius: 1rem;
  background: var(--pond-color-surface-muted);
}

.pond-account-summary__item strong {
  display: block;
  font-size: 1.5rem;
}

.pond-account-summary__item span {
  color: var(--pond-color-text-muted);
  font-size: 0.92rem;
}

.pond-rich-text {
  padding: 2rem;
  border: 1px solid var(--pond-color-border);
  border-radius: var(--pond-radius-lg);
  background: var(--pond-color-surface);
  box-shadow: 0 18px 40px -24px var(--pond-color-shadow);
}

.pond-rich-text > :first-child {
  margin-top: 0;
}

.pond-rich-text > :last-child {
  margin-bottom: 0;
}

.pond-rich-text h2,
.pond-rich-text h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.pond-rich-text ul,
.pond-rich-text ol {
  margin: 1rem 0;
  padding-left: 1.2rem;
}

.pond-rich-text li + li {
  margin-top: 0.5rem;
}

.pond-rich-text table,
.research-prose table {
  display: block;
  width: max-content;
  min-width: 100%;
  max-width: 100%;
  margin: 2rem 0;
  overflow-x: auto;
  border-collapse: separate;
  border-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.pond-rich-text th,
.pond-rich-text td,
.research-prose th,
.research-prose td {
  padding: 0.95rem 0.9rem;
  border: 0;
  text-align: left;
  vertical-align: top;
}

.pond-rich-text thead th,
.research-prose thead th {
  background-color: var(--pond-color-surface-muted);
  color: var(--pond-color-action-hover);
  font-weight: 700;
  border-bottom: 1px solid var(--pond-color-border);
}

.pond-rich-text tbody td,
.research-prose tbody td {
  border-bottom: 1px solid var(--pond-color-border);
}

.pond-rich-text tbody tr:last-child td,
.research-prose tbody tr:last-child td {
  border-bottom: 0;
}

.pond-rich-text caption,
.research-prose caption {
  margin-top: 0.75rem;
  color: var(--pond-color-text-subtle);
  font-size: 0.875rem;
  text-align: left;
  caption-side: bottom;
}

.pond-rich-text pre,
.pond-rich-text code {
  font-family: Consolas, "Courier New", monospace;
}

.pond-rich-text pre {
  overflow-x: auto;
  padding: 1rem;
  border-radius: 1rem;
  background: var(--pond-color-code-bg);
  color: var(--pond-color-code-text);
}

@media (max-width: 1200px) {
  .pond-card-grid--five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pond-card-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pond-hero__grid,
  .pond-account-grid {
    grid-template-columns: 1fr;
  }

  .pond-cta-band {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 992px) {
  .pond-nav,
  .pond-header__actions {
    display: none;
  }

  .pond-mobile-nav {
    display: block;
  }

  .pond-product-grid,
  .pond-card-grid--three,
  .pond-card-grid--two {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {
  .pond-section,
  .pond-hero,
  .pond-page-hero {
    padding-top: var(--pond-space-7);
    padding-bottom: var(--pond-space-7);
  }

  .pond-stats,
  .pond-account-summary,
  .pond-product-card__details {
    grid-template-columns: 1fr;
  }

  .pond-card-grid--five,
  .pond-card-grid--four {
    grid-template-columns: 1fr;
  }

  .pond-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .pond-toolbar .pond-field {
    min-width: 0;
  }

  .pond-hero__title,
  .pond-page-hero__title {
    max-width: none;
  }

  .pond-rich-text {
    padding: 1.3rem;
  }
}
