:root {
  --ink: #07183b;
  --muted: #5e6b85;
  --line: #dfe7f2;
  --bg: #f7fbff;
  --panel: #fff;
  --blue: #246bfe;
  --blue-soft: color-mix(in srgb, var(--blue) 8%, #fff);
  --accent-ink: color-mix(in srgb, var(--blue) 68%, var(--ink));
  --accent-border: color-mix(in srgb, var(--blue) 38%, #fff);
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  --font-display: Georgia, 'Times New Roman', serif;
  --hero-title-size: 74px;
  --section-title-size: 48px;
  --subtitle-size: 24px;
  --card-title-size: 14px;
  --shadow: 0 18px 45px rgba(14, 45, 95, .10);
}

* { box-sizing: border-box; }
html,
body {
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: inherit; text-decoration: none; }
.cms-design-scope {
  position: relative;
}
main {
  flex: 1;
  display: flex;
  flex-direction: column;
}
main > .site-main:first-child {
  padding-top: 76px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  margin-bottom: -76px;
  background: linear-gradient(180deg, rgba(255,255,255,.64), rgba(255,255,255,.38));
  backdrop-filter: saturate(190%) blur(22px);
  -webkit-backdrop-filter: saturate(190%) blur(22px);
  box-shadow: 0 1px 0 rgba(14,45,95,.04), 0 18px 42px rgba(14,45,95,.05);
}
body.header-mode-classic main > .site-main:first-child {
  padding-top: 20px;
}
body.header-mode-classic .topbar {
  margin-bottom: 0;
  background: rgba(255,255,255,.96);
  box-shadow: 0 1px 0 rgba(14,45,95,.07);
}
body.header-mode-classic .hero,
body.header-mode-classic .profile-hero-bleed,
body.header-mode-classic .audience-hero {
  margin-top: 0;
}
.topbar-inner {
  width: min(1500px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 76px;
  display: grid;
  grid-template-columns: 260px 1fr repeat(3, auto);
  gap: 14px;
  align-items: center;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 650;
  color: var(--ink);
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 28px;
  border-radius: 999px 999px 999px 4px;
  background: linear-gradient(135deg, #1d73ff, #0fb3d9);
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 17px;
  font-weight: 650;
}
.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
  align-self: center;
  transform: translateY(1px);
}
.brand-text {
  min-width: 0;
}
.topnav {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 520;
}
.topnav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 10px 15px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.topnav a > svg {
  display: none;
  width: 17px;
  height: 17px;
  stroke-width: 2;
}
.topnav a:hover {
  color: var(--ink);
  background: rgba(255,255,255,.28);
  box-shadow: none;
}
.topnav a.active {
  color: var(--blue);
  background: rgba(255,255,255,.62);
  box-shadow: 0 10px 26px rgba(14,45,95,.055);
}
.topnav a.active > svg {
  display: block;
  color: var(--blue);
}
.top-search {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 3px;
  height: 44px;
}
.top-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 9px 12px 9px 16px;
  font: inherit;
  color: var(--ink);
  height: 34px;
}
.top-search button,
.account-link,
.cache-clear-form button,
.cache-refresh-link,
.mobile-search-trigger {
  border: 0;
  background: rgba(255,255,255,.72);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 500;
  cursor: pointer;
}
.top-search button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  padding: 0;
  background: var(--blue);
  color: #fff;
}
.top-search button svg,
.account-link svg,
.cache-clear-form svg,
.cache-refresh-link svg,
.mobile-search-trigger svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.9;
}
.cache-clear-form button,
.cache-refresh-link,
.mobile-search-trigger {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--muted);
}
.cache-clear-form button:hover,
.cache-refresh-link:hover,
.mobile-search-trigger:hover {
  color: var(--blue);
  background: rgba(255,255,255,.9);
}
.mobile-search-layer {
  display: none;
}
.mobile-search-layer:not([hidden]) {
  display: block;
}
.mobile-search-trigger {
  display: grid;
}
.account-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
}
.scroll-top-button {
  position: fixed;
  right: max(22px, calc((100vw - 1500px) / 2 + 10px));
  bottom: 24px;
  z-index: 35;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 36px rgba(14,45,95,.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease, border-color .18s ease, background .18s ease;
  cursor: pointer;
}
.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top-button:hover {
  border-color: var(--accent-ink);
  background: var(--accent-ink);
  color: #fff;
}
.scroll-top-button svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}
.mobile-menu-button,
.mobile-menu-panel {
  display: none;
}
.flx-burger,
.flx-scrim,
.flx-drawer {
  display: none;
}
body.flx-menu-open {
  overflow: hidden;
}
.flx-burger,
.flx-close,
.flx-back,
.flx-item,
.flx-cookie-button {
  font: inherit;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}
.flx-burger,
.flx-close,
.flx-back,
.flx-item,
.flx-cookie-button {
  appearance: none;
  border: 0;
}
.flx-scrim[hidden],
.flx-drawer[hidden],
.flx-view[hidden],
.flx-submenu-content[hidden] {
  display: none;
}
.flx-scrim {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(4, 10, 22, .42);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}
.flx-scrim.open {
  opacity: 1;
  pointer-events: auto;
}
.flx-drawer {
  --flx-blue: var(--blue);
  --flx-text: var(--ink);
  --flx-muted: #7b8da8;
  --flx-line: #dbe5f3;
  --flx-soft: var(--blue-soft);
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 901;
  width: 84vw;
  max-width: 360px;
  height: 100dvh;
  overflow: hidden;
  border-radius: 0 16px 16px 0;
  background: #fff;
  color: var(--flx-text);
  box-shadow: 24px 0 60px rgba(15, 35, 70, .16);
  transform: translateX(-104%);
  transition: transform .3s cubic-bezier(.2,.9,.2,1);
}
.flx-drawer.open {
  transform: translateX(0);
}
.flx-scroll {
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 18px 13px 15px;
  scrollbar-width: none;
}
.flx-scroll::-webkit-scrollbar {
  display: none;
}
.flx-head {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.flx-brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  color: var(--flx-text);
}
.flx-brand img,
.flx-brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 12px;
}
.flx-brand img {
  object-fit: contain;
}
.flx-brand-mark {
  display: grid;
  place-items: center;
  background: var(--flx-soft);
  color: var(--flx-blue);
  font-weight: 600;
}
.flx-brand strong {
  display: block;
  color: var(--flx-text);
  font-size: 18px;
  font-weight: 560;
  line-height: 1;
  letter-spacing: 0;
}
.flx-brand em {
  display: block;
  margin-top: 4px;
  color: var(--flx-muted);
  font-size: 9px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: .03em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.flx-close,
.flx-back {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: transparent;
  color: var(--flx-text);
  cursor: pointer;
}
.flx-back {
  background: var(--flx-soft);
}
.flx-close svg,
.flx-back svg {
  width: 21px;
  height: 21px;
  stroke-width: 1.9;
}
.flx-section-label,
.flx-kicker {
  margin: 0 8px 8px;
  color: var(--flx-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  line-height: 1.4;
  text-transform: uppercase;
}
.flx-list {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.flx-item {
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr) 18px;
  gap: 8px;
  align-items: center;
  width: 100%;
  min-height: 43px;
  padding: 0 8px 0 10px;
  border-radius: 10px;
  background: transparent;
  color: var(--flx-text);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background .16s ease, color .16s ease;
}
.flx-item.active,
.flx-item:hover {
  background: var(--flx-soft);
  color: var(--flx-blue);
}
.flx-icon {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  color: currentColor;
}
.flx-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.75;
}
.flx-label {
  min-width: 0;
  color: currentColor;
  font-size: 14px;
  font-weight: 480;
  letter-spacing: 0;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.flx-item.active .flx-label {
  font-weight: 560;
}
.flx-chev {
  width: 18px;
  height: 18px;
  justify-self: end;
  stroke-width: 2.15;
}
.flx-compact .flx-item {
  min-height: 38px;
  grid-template-columns: 27px minmax(0, 1fr) 18px;
  padding-left: 9px;
}
.flx-compact .flx-label {
  font-size: 13px;
}
.flx-divider {
  border: 0;
  border-top: 1px solid var(--flx-line);
  margin: 11px 0 10px;
}
.flx-note {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  width: 100%;
  padding: 10px;
  border-radius: 11px;
  background: var(--flx-soft);
  color: var(--flx-blue);
}
.flx-note svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.9;
}
.flx-note strong {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.15;
}
.flx-note em {
  display: block;
  color: #24456f;
  font-size: 11px;
  font-style: normal;
  font-weight: 430;
  line-height: 1.3;
}
.flx-cookie-button {
  margin-top: 2px;
}
.flx-cache-form {
  margin: 0;
}
.flx-view {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  background: #fff;
  transform: translateX(102%);
  transition: transform .3s cubic-bezier(.2,.9,.2,1);
}
.flx-view.open {
  transform: translateX(0);
}
.flx-view .flx-head {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 18px 13px 12px;
  border-bottom: 1px solid #edf2fa;
}
.flx-title {
  margin: 0;
  color: #14345f;
  font-size: 16px;
  font-weight: 550;
  letter-spacing: 0;
  line-height: 1.1;
  text-align: center;
}
.flx-view .flx-scroll {
  padding: 13px 13px 18px;
}
.mobile-search-layer[hidden] {
  display: none;
}
.mobile-search-layer {
  position: fixed;
  inset: 0;
  z-index: 880;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.mobile-search-layer.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-search-scrim {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 22, .36);
}
.mobile-search-dialog {
  position: absolute;
  top: 76px;
  left: 50%;
  right: auto;
  width: min(520px, calc(100vw - 32px));
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 18px 48px rgba(7, 24, 59, .18);
  transform: translate(-50%, -8px);
  transition: transform .22s ease;
}
.mobile-search-layer.open .mobile-search-dialog {
  transform: translate(-50%, 0);
}
.mobile-search-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.mobile-search-head strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 560;
}
.mobile-search-head button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
}
.mobile-search-head svg {
  width: 17px;
  height: 17px;
}
.mobile-search-form {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-height: 48px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.mobile-search-form > i,
.mobile-search-form > svg {
  justify-self: center;
  color: var(--blue);
}
.mobile-search-form input {
  min-width: 0;
  height: 38px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}
.mobile-search-form button[type="submit"] {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--blue);
  border-radius: 9px;
  background: var(--blue);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
}
.frontend-notice {
  width: min(1500px, calc(100% - 48px));
  margin: 10px auto 0;
  border: 1px solid var(--accent-border);
  background: var(--blue-soft);
  color: var(--accent-ink);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
}

.site-main {
  width: min(1500px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 20px;
}
.hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  overflow: hidden;
  min-height: 520px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 92% 18%, rgba(255,255,255,.68), transparent 18%),
    radial-gradient(circle at 84% 62%, rgba(120,186,255,.20), transparent 26%),
    radial-gradient(circle at 74% 18%, rgba(77,164,255,.28), transparent 30%),
    linear-gradient(100deg, #fff 0%, #f4faff 48%, #dff2ff 100%);
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.84) 30%, rgba(255,255,255,.36) 55%, rgba(255,255,255,.08) 100%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(220,239,255,.36));
  z-index: 1;
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--home-hero-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.01);
  z-index: 0;
}
.hero-inner {
  width: min(1500px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(360px, 560px) 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px 24px 64px;
}
.hero-copy {
  align-self: start;
  padding: 58px 0 0;
}
.hero-eyebrow {
  color: var(--blue);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 560;
  margin: 0 0 10px;
}
.hero-eyebrow:empty {
  display: none;
}
.eyebrow {
  color: var(--blue);
  font-weight: 620;
  margin: 0 0 12px;
}
h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 4.8vw, var(--hero-title-size));
  line-height: .98;
  letter-spacing: 0;
  margin: 0 0 22px;
  overflow-wrap: anywhere;
}
.hero-text {
  max-width: 520px;
  color: #243754;
  font-size: 15px;
  line-height: 1.62;
  margin: 0 0 30px;
}
.hero-subtitle {
  color: #60708f;
  font-size: var(--subtitle-size);
  font-style: italic;
  line-height: 1.2;
  margin: -10px 0 16px;
}
.hero-subtitle:empty {
  display: none;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 10px;
  padding: 14px 24px;
  font-weight: 520;
}
.primary-link svg,
.secondary-link svg {
  width: 17px;
  height: 17px;
  stroke-width: 1.9;
}
.primary-link { background: var(--blue); color: #fff; box-shadow: 0 12px 24px color-mix(in srgb, var(--blue) 22%, transparent); }
.secondary-link { background: #fff; color: var(--blue); border: 1px solid var(--accent-border); }
.hero-visual {
  position: relative;
  min-height: 340px;
}
.hero-no-note .hero-inner {
  grid-template-columns: minmax(360px, 560px) 1fr;
}
.hero-no-note .hero-copy {
  max-width: 560px;
}
.fish-shape {
  position: absolute;
  right: 4%;
  top: 19%;
  width: min(760px, 72vw);
  height: 205px;
  border-radius: 58% 44% 46% 58%;
  background:
    radial-gradient(circle at 18% 43%, #061734 0 10px, transparent 11px),
    linear-gradient(90deg, #d8f4ff, #2e9fd1 28%, #b6e2ee 52%, #2772ad 100%);
  box-shadow: inset 0 -26px 38px rgba(5,41,83,.22), 0 24px 60px rgba(12,78,130,.24);
}
.fish-shape::before {
  content: "";
  position: absolute;
  right: -110px;
  top: 35px;
  border-left: 130px solid #2e82b7;
  border-top: 58px solid transparent;
  border-bottom: 58px solid transparent;
  filter: drop-shadow(0 10px 18px rgba(12,78,130,.18));
}
.fish-shape::after {
  content: "";
  position: absolute;
  left: 42%;
  top: -58px;
  width: 130px;
  height: 75px;
  background: #1b6d9d;
  clip-path: polygon(0 100%, 55% 0, 100% 100%);
  opacity: .86;
}
.hero-fish-image {
  position: absolute;
  right: 0;
  top: 7%;
  width: min(850px, 76vw);
  height: 310px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 28px 34px rgba(13, 61, 115, .22));
}
.hero-note {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.hero-note span,
.hero-note small { display: block; }
.hero-note small {
  color: var(--blue);
  font-size: 12px;
  margin-bottom: 4px;
  font-weight: 560;
}
.hero-note span { color: var(--muted); font-size: 13px; margin: 2px 0 8px; }
.hero-facts {
  display: grid;
  gap: 10px;
}
.hero-fact {
  display: grid !important;
  grid-template-columns: 30px 1fr;
  gap: 2px 10px;
  align-items: center;
  margin: 0 !important;
}
.hero-fact svg {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  padding: 6px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 999px;
  stroke-width: 1.9;
}
.hero-fact b,
.hero-fact em {
  display: block;
  min-width: 0;
}
.hero-fact b {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.15;
  font-weight: 560;
}
.hero-fact em {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
  font-style: normal;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 16px;
  margin: 18px 0 30px;
  position: relative;
  z-index: 5;
}
.category-card,
.item-card,
.info-band {
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.category-card {
  min-height: 96px;
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
}
.category-icon,
.item-image {
  display: grid;
  place-items: center;
  font-size: 26px;
  background: var(--blue-soft);
  border-radius: 12px;
  color: var(--blue);
}
.category-icon svg {
  width: 31px;
  height: 31px;
  stroke-width: 1.75;
}
.category-card strong,
.category-card small { display: block; }
.category-card strong {
  font-size: 15px;
  line-height: 1.18;
  font-weight: 560;
}
.category-card small { color: var(--muted); margin-top: 2px; }
.category-card b { color: var(--blue); font-size: 24px; font-weight: 500; }

.home-search-panel {
  position: relative;
  z-index: 6;
  display: grid;
  width: min(640px, calc(100% - 48px));
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 14px 18px;
  align-items: center;
  margin: -52px auto 44px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 24px 55px rgba(14, 45, 95, .13);
}
.home-search-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
}
.home-search-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.85;
}
.home-search-copy strong,
.home-search-copy span {
  display: block;
}
.home-search-copy strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 620;
  text-transform: uppercase;
}
.portal-links-section {
  margin: 32px 0 46px;
}
.portal-links-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.portal-link-card {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: end;
  min-height: 244px;
  overflow: hidden;
  border-radius: 9px;
  background: #0b2b43;
  box-shadow: 0 12px 28px rgba(10, 31, 57, .12);
}
.portal-link-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,24,43,.04) 5%, rgba(7,24,43,.18) 36%, rgba(5,23,43,.92) 100%);
}
.portal-link-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.portal-link-card:hover img {
  transform: scale(1.035);
}
.portal-link-content {
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 0 17px 16px;
  color: #fff;
}
.portal-link-content > i,
.portal-link-content > svg {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 0 8px;
  padding: 13px;
  border-radius: 999px;
  background: rgba(36,107,254,.6);
  box-shadow: 0 8px 18px rgba(4,24,49,.24);
}
.portal-link-content strong {
  color: #fff;
  font-size: 19px;
  line-height: 1.14;
  font-weight: 600;
}
.portal-link-content small {
  color: rgba(255,255,255,.88);
  font-size: 12.5px;
  line-height: 1.36;
}
.home-search-copy span {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}
.home-search-form {
  position: relative;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  min-height: 56px;
  overflow: visible;
}
.home-search-form input {
  min-width: 0;
  min-height: 56px;
  border: 1.5px solid #b9cce9;
  border-radius: 9px;
  outline: 0;
  background: #fff;
  padding: 0 22px;
  color: var(--ink);
  font: inherit;
  box-shadow: inset 0 1px 1px rgba(14,45,95,.02);
}
.home-search-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--blue) 10%, transparent);
}
.home-search-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 124px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 560;
  cursor: pointer;
  border-radius: 8px;
}
.home-search-form button svg {
  width: 17px;
  height: 17px;
  stroke-width: 2;
}
.search-page {
  padding: 42px 0 64px;
}
.search-large-form {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 46px;
  align-items: center;
  width: min(760px, 100%);
  margin: 0 auto;
  min-height: 58px;
  border: 1.5px solid var(--blue);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(14, 45, 95, .12);
  overflow: visible;
}
.search-large-form > svg,
.search-large-form > i {
  width: 20px;
  height: 20px;
  margin-left: 18px;
  color: #0f4ea6;
  stroke-width: 1.9;
}
.search-large-form input {
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 15px;
  padding: 0 10px;
}
.search-clear {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-right: 4px;
  border-radius: 999px;
  color: var(--blue);
}
.search-clear:hover {
  background: var(--blue-soft);
}
.search-clear svg,
.search-clear i {
  width: 19px;
  height: 19px;
  stroke-width: 2;
}
.search-results-card {
  overflow: hidden;
  width: min(760px, 100%);
  margin: -1px auto 0;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 12px 12px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 22px 44px rgba(14, 45, 95, .10);
}
.search-result-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 9px 14px;
  border-top: 1px solid #eef3f9;
}
.search-result-row:first-child {
  border-top: 0;
}
.search-result-row.featured {
  background: linear-gradient(90deg, #f5f9ff, #fff 70%);
}
.search-result-row:hover {
  background: #f7fbff;
}
.search-result-media {
  display: grid;
  place-items: center;
  width: 44px;
  height: 40px;
  color: #0f4ea6;
}
.search-result-media img {
  width: 48px;
  height: 34px;
  object-fit: contain;
  object-position: 70% center;
  filter: drop-shadow(0 5px 8px rgba(12, 45, 95, .12));
}
.search-result-media svg,
.search-result-media i {
  width: 19px;
  height: 19px;
  stroke-width: 1.9;
}
.search-result-copy {
  min-width: 0;
}
.search-result-copy strong,
.search-result-copy em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search-result-copy strong {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 610;
  color: #103168;
}
.search-result-copy em {
  margin-top: 2px;
  color: #4f6079;
  font-size: 12px;
  line-height: 1.2;
  font-style: normal;
}
.search-result-badge {
  justify-self: end;
  max-width: 170px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #52627a;
  padding: 5px 8px;
  font-size: 11px;
  line-height: 1;
}
.search-panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 16px;
  border-top: 1px solid #eef3f9;
  color: #15335f;
  font-size: 13px;
}
.search-panel-footer svg {
  width: 17px;
  height: 17px;
  color: var(--blue);
}
.search-empty {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 34px 18px;
  text-align: center;
  color: var(--muted);
}
.search-empty svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
}
.search-empty strong {
  color: var(--ink);
  font-weight: 560;
}
.search-full-results {
  margin-top: 30px;
}
.live-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 60;
  overflow: hidden;
  border: 1px solid #dfe7f2;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 22px 46px rgba(14,45,95,.16);
}
.top-search .live-search-results {
  left: auto;
  right: 0;
  width: min(440px, calc(100vw - 32px));
}
.live-result-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 9px 12px;
  border-bottom: 1px solid #eef3f9;
}
.live-result-row.featured {
  background: #f5f9ff;
}
.live-result-row:hover {
  background: #f5f9ff;
}
.live-result-media {
  display: grid;
  place-items: center;
  width: 43px;
  height: 38px;
  color: var(--accent-ink);
}
.live-result-media img {
  width: 46px;
  height: 34px;
  object-fit: contain;
  object-position: 70% center;
}
.live-result-media svg {
  width: 18px;
  height: 18px;
}
.live-result-copy {
  min-width: 0;
}
.live-result-copy strong,
.live-result-copy em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.live-result-copy strong {
  color: var(--accent-ink);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 610;
}
.live-result-copy em {
  color: #4e607a;
  font-size: 11px;
  line-height: 1.25;
  font-style: normal;
}
.live-result-badge {
  max-width: 110px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #52627a;
  padding: 5px 8px;
  font-size: 10px;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.live-results-empty {
  display: block;
  padding: 18px;
  color: var(--muted);
  font-size: 13px;
}
.live-results-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: #173968;
  font-size: 12px;
}
.live-results-footer svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
}
.topic-showcase {
  margin: 0 0 42px;
}
.topic-title {
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  text-align: center;
}
.topic-title h2 {
  position: relative;
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 660;
  text-transform: uppercase;
}
.topic-title h2::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin: 12px auto 0;
  background: #c8d8f2;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 24px 0 14px;
}
.section-head h2 {
  margin: 0;
  font-size: 22px;
  border-left: 4px solid var(--blue);
  padding-left: 12px;
}
.section-head a { color: var(--blue); font-weight: 560; }
.section-head a {
  font-size: 13px;
}
.section-head > span {
  color: var(--muted);
  font-size: 13px;
}
.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 24px;
}
.home-feature-card,
.daily-pick,
.knowledge-card,
.quick-discovery {
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.home-feature-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 2px 14px;
  align-items: start;
  padding: 18px;
  transition: transform .16s ease, border-color .16s ease;
}
.home-feature-card:hover,
.daily-pick:hover,
.topic-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-border);
}
.home-feature-card > span {
  grid-row: span 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
}
.home-feature-card svg,
.topic-card svg,
.knowledge-card svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.85;
}
.home-feature-card small,
.home-feature-card strong,
.home-feature-card em {
  display: block;
  min-width: 0;
}
.home-feature-card small,
.knowledge-card small {
  color: var(--blue);
  font-size: 12px;
  font-weight: 560;
}
.home-feature-card strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.15;
  font-weight: 560;
}
.home-feature-card em,
.knowledge-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  font-style: normal;
}
.quick-discovery {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px;
  margin: 0 0 26px;
}
.quick-discovery h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}
.quick-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: flex-end;
}
.quick-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  border: 1px solid #c8d8f2;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 7px 10px 7px 13px;
  font-size: 13px;
  font-weight: 520;
}
.quick-chip:hover {
  background: var(--blue-soft);
  color: var(--blue);
}
.quick-chip b {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
  font-weight: 560;
}
.daily-picks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 34px;
}
.daily-pick {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 136px;
  padding: 14px;
  overflow: hidden;
  transition: transform .16s ease, border-color .16s ease;
}
.daily-pick img {
  width: 128px;
  height: 96px;
  object-fit: cover;
  object-position: 70% center;
  border-radius: 12px;
  background: var(--blue-soft);
}
.daily-pick-body small,
.daily-pick-body strong,
.daily-pick-body em {
  display: block;
}
.daily-pick-body small {
  color: var(--blue);
  font-size: 12px;
  font-weight: 560;
  margin-bottom: 4px;
}
.daily-pick-body strong {
  font-size: 18px;
  line-height: 1.16;
  font-weight: 560;
  margin-bottom: 6px;
}
.daily-pick-body em {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
  font-style: normal;
}
.topic-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
}
.topic-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 7px;
  min-height: 122px;
  padding: 0 20px;
  color: var(--ink);
  text-align: center;
  transition: transform .16s ease, border-color .16s ease;
}
.topic-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 0;
  width: 1px;
  height: 70px;
  background: var(--line);
}
.topic-card > span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  margin-bottom: 2px;
}
.topic-card strong {
  min-height: 0;
  font-size: 14px;
  line-height: 1.18;
  font-weight: 600;
}
.topic-card em {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.28;
  font-style: normal;
}
.knowledge-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 38px;
}
.knowledge-card {
  display: grid;
  gap: 6px;
  padding: 18px;
}
.knowledge-card svg {
  color: var(--blue);
  margin-bottom: 4px;
}
.knowledge-card strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.18;
  font-weight: 560;
}
.species-discovery {
  margin: 44px 0 48px;
  padding: 42px 0 0;
}
.species-discovery-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 30px;
}
.species-discovery-head .eyebrow {
  margin: 0 0 20px;
  color: var(--accent-ink);
  font-size: 13px;
  line-height: 1.1;
  font-weight: 660;
  text-transform: uppercase;
}
.species-discovery-head h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(29px, 3vw, 46px);
  line-height: 1.12;
  font-weight: 650;
  text-transform: uppercase;
}
.species-discovery-head p:not(.eyebrow) {
  max-width: 530px;
  margin: 0;
  color: #334259;
  font-size: 14px;
  line-height: 1.58;
}
.species-discovery-head > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  min-height: 48px;
  border: 1px solid var(--blue);
  border-radius: 7px;
  padding: 0 16px;
  color: var(--accent-ink);
  font-size: 12px;
  line-height: 1;
  font-weight: 620;
  text-transform: uppercase;
}
.species-discovery-head > a:hover {
  background: var(--blue-soft);
}
.species-discovery-head > a svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.7;
}
.species-discovery-subhead h3 {
  margin: 0 0 16px;
  color: var(--accent-ink);
  font-size: 13px;
  line-height: 1.1;
  font-weight: 660;
  text-transform: uppercase;
}
.item-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 42px;
}
.item-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 194px 1fr;
  overflow: hidden;
  padding: 0;
  transition: transform .16s ease, border-color .16s ease;
}
.item-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-border);
}
.item-image {
  position: relative;
  width: 100%;
  height: 194px;
  min-height: 194px;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  background: var(--blue-soft);
}
.item-image img {
  width: 100%;
  height: 194px;
  object-fit: cover;
  object-position: 70% center;
}
.item-body {
  display: grid;
  align-content: start;
  min-width: 0;
  padding: 15px 16px 14px;
}
.item-body strong,
.item-body small { display: block; }
.item-body strong {
  color: var(--accent-ink);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 600;
}
.item-body small {
  color: #4e607a;
  margin: 3px 0 15px;
  font-size: 12px;
  font-style: italic;
  line-height: 1.25;
}
.item-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
}
.item-facts em {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  color: #4f6079;
  font-size: 11px;
  line-height: 1.24;
  font-style: normal;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.item-facts em:not(:last-child) {
  padding-right: 12px;
  border-right: 1px solid #e0e7f2;
}
.item-facts svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: var(--accent-ink);
  stroke-width: 1.8;
}

.info-band {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, 1fr);
  gap: 0;
  margin: 28px 0 34px;
  padding: 22px 24px;
}
.info-band div {
  border-right: 1px solid var(--line);
  padding: 0 22px;
}
.info-band div:first-child { padding-left: 0; }
.info-band div:last-child { border-right: 0; }
.info-band strong { display: block; color: var(--ink); font-size: 17px; margin-bottom: 4px; }
.info-band div:first-child strong { color: var(--blue); font-size: 30px; }
.info-band span,
.info-band small { color: var(--muted); display: block; }

.page-hero {
  position: relative;
  padding: 48px 0 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.page-hero-empty {
  display: none;
}
.static-page {
  padding: 20px 0 68px;
}
.static-page .page-hero {
  border-bottom: 0;
  margin-bottom: 10px;
  padding-top: 38px;
}
.static-page .page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 540;
  line-height: 1.12;
}
.static-page-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.static-page-description {
  max-width: 760px;
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}
.static-page-meta {
  margin-top: 10px;
}
.static-page .static-content {
  max-width: none;
  padding: clamp(22px, 3vw, 34px);
}
.static-page .static-content-plain,
.static-content-plain {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.static-content {
  max-width: 980px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow);
  padding: 28px;
  color: var(--ink);
}
.static-content > *:first-child {
  margin-top: 0;
}
.static-content > *:last-child {
  margin-bottom: 0;
}
.static-content h2,
.static-content h3,
.static-content h4 {
  line-height: 1.2;
  margin: 1.4em 0 .55em;
  font-weight: 620;
}
.static-content p,
.static-content li {
  color: #24334f;
}
.static-content a {
  color: var(--blue);
  font-weight: 540;
}
.static-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.static-content table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}
.static-content th,
.static-content td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
}
.plugin-page {
  padding: 24px 0 64px;
}
.plugin-breadcrumbs {
  margin: 0 0 18px;
}
.plugin-page-head {
  margin-bottom: 14px;
}
.plugin-page-head h1 {
  margin: 0;
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 540;
  line-height: 1.05;
  color: var(--ink);
}
.plugin-page-head p:not(.eyebrow) {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.plugin-page-description {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.plugin-content {
  min-width: 0;
}
.plugin-frame {
  display: block;
  width: 100%;
  min-height: 920px;
  border: 0;
  background: transparent;
}
.custom-home-section {
  margin: 0 0 34px;
}
.custom-home-section.is-composed {
  margin: 6px 0 46px;
}
.custom-home-section > h2 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 620;
}
.custom-home-section .static-content {
  max-width: none;
}
.custom-home-section .static-content-plain {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.custom-home-content {
  max-width: none;
}
.editorial-section {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 16% 8%, color-mix(in srgb, var(--blue) 8%, transparent), transparent 28%),
    linear-gradient(135deg, #fff 0%, #f7fbff 58%, color-mix(in srgb, var(--blue) 7%, #fff) 100%);
  box-shadow: 0 22px 60px rgba(14, 45, 95, .08);
}
.knowledge-depth-section {
  min-height: 540px;
  padding: 56px 34px 34px;
}
.knowledge-depth-copy {
  position: relative;
  z-index: 2;
  width: min(45%, 500px);
}
.knowledge-depth-copy .eyebrow,
.knowledge-depth-topics .eyebrow {
  margin: 0 0 18px;
  color: var(--accent-ink);
  font-size: 14px;
  line-height: 1.1;
  font-weight: 660;
  text-transform: uppercase;
}
.knowledge-depth-copy h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.08;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
}
.knowledge-depth-copy p:not(.eyebrow) {
  max-width: 480px;
  margin: 0;
  color: #3d4a61;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.55;
}
.knowledge-depth-visual {
  position: absolute;
  top: -20px;
  right: -58px;
  z-index: 1;
  width: min(50vw, 650px);
  height: 430px;
  background-image:
    linear-gradient(180deg, rgba(16,126,190,.05), rgba(5,34,65,.18)),
    var(--section-bg-image, url('/assets/placeholders/habitat-underwater.svg'));
  background-size: cover;
  background-position: center;
  border-radius: 58% 0 0 54% / 48% 0 0 52%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.24);
}
.knowledge-depth-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 20%, rgba(255,255,255,.35), transparent 22%),
    linear-gradient(90deg, rgba(255,255,255,.08), rgba(5,28,58,.16));
  border-radius: inherit;
}
.knowledge-depth-topics {
  position: relative;
  z-index: 3;
  margin-top: 74px;
}
.knowledge-depth-topics .eyebrow {
  margin-bottom: 24px;
}
.knowledge-depth-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1280px;
}
.knowledge-depth-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 230px;
  padding: 26px 20px 24px;
  border: 1px solid rgba(223,231,242,.84);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 24px 70px rgba(14,45,95,.08);
  text-align: center;
  backdrop-filter: blur(8px);
}
.knowledge-depth-card > span {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--accent-ink);
}
.knowledge-depth-card svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.45;
}
.knowledge-depth-card strong {
  position: relative;
  display: block;
  margin-bottom: 28px;
  color: var(--accent-ink);
  font-size: 14px;
  line-height: 1.16;
  font-weight: 660;
  text-transform: uppercase;
}
.knowledge-depth-card strong::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 34px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--blue);
}
.knowledge-depth-card em {
  display: block;
  color: #334259;
  font-size: 13px;
  line-height: 1.45;
  font-style: normal;
}
.knowledge-depth-foot {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  color: var(--accent-ink);
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
.ai-about-section {
  display: grid;
  gap: 28px;
  margin: 0 0 46px;
  padding: 44px 34px 34px;
}
.ai-about-intro {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
}
.ai-about-intro .eyebrow,
.ai-principles .eyebrow,
.ai-mission-strip .eyebrow,
.ai-stats .eyebrow {
  margin: 0 0 14px;
  color: var(--accent-ink);
  font-size: 13px;
  line-height: 1.1;
  font-weight: 660;
  text-transform: uppercase;
}
.ai-about-intro h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.12;
  font-weight: 660;
  text-transform: uppercase;
}
.ai-about-intro p:not(.eyebrow) {
  max-width: 640px;
  margin: 0 0 16px;
  color: #334259;
  font-size: 15px;
  line-height: 1.58;
}
.ai-about-image {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background-image:
    linear-gradient(180deg, rgba(9,42,79,.05), rgba(6,23,45,.2)),
    var(--section-bg-image, url('/assets/placeholders/habitat-underwater.svg'));
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.ai-about-image blockquote {
  position: absolute;
  left: 26px;
  bottom: 24px;
  display: grid;
  gap: 7px;
  width: min(58%, 330px);
  margin: 0;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  background: rgba(7,24,59,.74);
  color: #fff;
  padding: 18px 20px;
  box-shadow: 0 18px 38px rgba(7,24,59,.2);
  backdrop-filter: blur(8px);
}
.ai-about-image blockquote svg {
  width: 20px;
  height: 20px;
  color: #75a7ff;
  fill: none;
}
.ai-about-image blockquote span {
  font-size: 14px;
  line-height: 1.45;
  font-weight: 560;
}
.ai-principle-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.ai-principle-card {
  display: grid;
  align-content: start;
  min-height: 210px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 36px rgba(14,45,95,.06);
}
.ai-principle-card > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--accent-ink);
}
.ai-principle-card svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.65;
}
.ai-principle-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-ink);
  font-size: 13px;
  line-height: 1.22;
  font-weight: 660;
  text-transform: uppercase;
}
.ai-principle-card em {
  color: #334259;
  font-size: 12px;
  line-height: 1.5;
  font-style: normal;
}
.ai-mission-strip {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  align-items: center;
  border: 1px solid #dbe8f8;
  border-radius: 12px;
  background: linear-gradient(135deg, #f8fbff, var(--blue-soft));
  padding: 28px 34px;
}
.ai-mission-strip > span {
  display: grid;
  place-items: center;
  color: var(--accent-ink);
}
.ai-mission-strip > span svg {
  width: 96px;
  height: 96px;
  stroke-width: 1.15;
}
.ai-mission-strip strong,
.ai-mission-strip em {
  display: block;
}
.ai-mission-strip strong {
  margin: 0 0 8px;
  color: var(--accent-ink);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 650;
}
.ai-mission-strip em {
  color: #334259;
  font-size: 13px;
  line-height: 1.55;
  font-style: normal;
}
.ai-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 36px rgba(14,45,95,.06);
}
.ai-stats-grid div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 2px 14px;
  align-items: center;
  min-height: 94px;
  padding: 18px 24px;
  border-right: 1px solid var(--line);
}
.ai-stats-grid div:last-child {
  border-right: 0;
}
.ai-stats-grid svg {
  grid-row: span 2;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 999px;
  color: var(--accent-ink);
  background: var(--blue-soft);
}
.ai-stats-grid strong {
  color: var(--accent-ink);
  font-size: 22px;
  line-height: 1.05;
  font-weight: 650;
}
.ai-stats-grid span {
  color: #334259;
  font-size: 12px;
  line-height: 1.35;
}
.category-explorer-section {
  min-height: 530px;
  margin: 0 0 46px;
  padding: 44px 34px 30px;
}
.category-explorer-copy {
  position: relative;
  z-index: 3;
  width: min(43%, 500px);
}
.category-explorer-copy .eyebrow,
.category-explorer-topics .eyebrow {
  margin: 0 0 18px;
  color: var(--accent-ink);
  font-size: 14px;
  line-height: 1.1;
  font-weight: 660;
  text-transform: uppercase;
}
.category-explorer-copy h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.08;
  font-weight: 650;
  text-transform: uppercase;
}
.category-explorer-copy p:not(.eyebrow) {
  max-width: 480px;
  margin: 0;
  color: #3d4a61;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.55;
}
.category-image-mosaic {
  position: absolute;
  top: -42px;
  right: -42px;
  z-index: 1;
  width: 520px;
  min-height: 560px;
  overflow: hidden;
  border-radius: 58% 0 0 50% / 44% 0 0 56%;
  background-image:
    linear-gradient(180deg, rgba(12,62,106,.05), rgba(3,20,38,.20)),
    var(--section-bg-image, url('/assets/placeholders/habitat-underwater.svg'));
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22);
}
.category-image-mosaic::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 30% 14%, rgba(255,255,255,.34), transparent 20%),
    linear-gradient(90deg, rgba(255,255,255,.05), rgba(5,28,58,.18));
}
.category-image-mosaic span {
  display: none;
}
.category-explorer-topics {
  width: 100%;
}
.category-explorer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.category-explorer-card {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 3px 14px;
  align-items: center;
  min-height: 88px;
  padding: 13px 15px;
  border: 1px solid rgba(223,231,242,.8);
  border-radius: 12px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 18px 48px rgba(14,45,95,.07);
  text-align: left;
  backdrop-filter: blur(8px);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.category-explorer-card:hover {
  transform: translateY(-2px);
  border-color: #b9cdf0;
  box-shadow: 0 22px 56px rgba(14,45,95,.10);
}
.category-explorer-icon {
  display: grid;
  place-items: center;
  grid-row: span 2;
  width: 46px;
  height: 46px;
  margin-bottom: 0;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--accent-ink);
}
.category-explorer-card svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.55;
}
.category-explorer-title {
  display: block;
  margin-bottom: 0;
  color: var(--accent-ink);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
}
.category-explorer-card em {
  color: #334259;
  font-size: 13px;
  line-height: 1.4;
  font-style: normal;
  white-space: nowrap;
}
.category-explorer-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}
.editorial-copy .eyebrow,
.editorial-topics .eyebrow,
.ai-about-intro .eyebrow,
.ai-principles .eyebrow,
.ai-mission-strip .eyebrow,
.ai-stats .eyebrow {
  color: var(--accent-ink);
  font-size: 14px;
  margin-bottom: 18px;
}
.editorial-copy h2,
.ai-about-intro h2,
.species-discovery-head h2 {
  font-size: clamp(30px, 3.6vw, var(--section-title-size));
}
.editorial-copy p:not(.eyebrow),
.ai-about-intro p:not(.eyebrow),
.species-discovery-head p:not(.eyebrow) {
  color: #3d4a61;
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.55;
}
.editorial-topics {
  position: relative;
  z-index: 3;
  margin-top: 74px;
}
.editorial-topics .eyebrow {
  margin-bottom: 24px;
}
.knowledge-depth-card > span,
.ai-principle-card > span,
.category-explorer-icon,
.ai-stats-grid svg {
  color: var(--accent-ink);
}
.knowledge-depth-card strong,
.ai-principle-card strong,
.category-explorer-title,
.ai-mission-strip strong,
.ai-stats-grid strong,
.species-discovery-head .eyebrow,
.species-discovery-subhead h3,
.item-body strong {
  color: var(--accent-ink);
}
.knowledge-depth-card strong::after {
  background: var(--blue);
}
.ai-mission-strip > span,
.live-result-media,
.live-result-copy strong,
.species-discovery-head > a,
.item-facts svg,
.knowledge-depth-foot,
.frontend-notice {
  color: var(--accent-ink);
}
.item-body strong {
  font-size: var(--card-title-size);
}
.topic-card strong,
.knowledge-depth-card strong,
.ai-principle-card strong,
.category-explorer-title {
  font-size: var(--card-title-size);
  font-weight: 600;
}
.category-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 14px;
}
.category-subnav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 520;
  box-shadow: 0 8px 20px rgba(14, 45, 95, .05);
}
.category-subnav a:hover,
.category-subnav a.active {
  border-color: var(--accent-border);
  background: var(--blue-soft);
  color: var(--blue);
}
.fish-profile { margin: 0 auto 20px; }
.profile-hero-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  position: relative;
  overflow: hidden;
  min-height: 550px;
  background:
    radial-gradient(circle at 92% 20%, rgba(255,255,255,.7), transparent 16%),
    linear-gradient(105deg, #fff 0%, #f7fbff 50%, #e0f1ff 100%);
}
.profile-hero-bleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.82) 28%, rgba(255,255,255,.34) 52%, rgba(255,255,255,.08) 100%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(220,239,255,.36));
  z-index: 1;
  pointer-events: none;
}
.profile-hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--profile-hero-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.01);
  z-index: 0;
}
.profile-hero-inner {
  width: min(1500px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  min-height: 550px;
  display: grid;
  grid-template-columns: minmax(360px, 520px) 1fr;
  gap: 30px;
  align-items: center;
  padding: 38px 0 30px;
}
.profile-copy {
  align-self: start;
  padding: 64px 0 0 6px;
}
.breadcrumbs {
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 22px;
}
.breadcrumbs a {
  color: var(--muted);
  transition: color .16s ease;
}
.breadcrumbs a:hover {
  color: var(--blue);
}
.breadcrumbs strong { color: var(--blue); }
.profile-hero-inner h1 {
  font-size: clamp(48px, 6vw, var(--hero-title-size));
  margin-bottom: 8px;
}
.latin {
  color: #667ba5;
  font-size: clamp(18px, 2vw, var(--subtitle-size));
  font-style: italic;
  margin: 0 0 18px;
}
.profile-intro {
  max-width: 520px;
  color: #243754;
  font-size: 15px;
  line-height: 1.62;
  font-weight: 400;
  margin: 0 0 30px;
}
.profile-ai-meta {
  min-height: 30px;
}
.ai-badge {
  --ai-badge-bg: rgba(255,255,255,.34);
  --ai-badge-border: transparent;
  --ai-badge-color: #17325c;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 32px;
  min-height: 26px;
  max-width: 190px;
  padding: 4px 6px;
  border: 1px solid var(--ai-badge-border);
  border-radius: 999px;
  background: var(--ai-badge-bg);
  color: var(--ai-badge-color);
  box-shadow: 0 10px 24px rgba(15, 47, 93, .045);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 10px;
  line-height: 1;
  font-weight: 520;
  letter-spacing: 0;
  white-space: nowrap;
  text-decoration: none;
  transition: max-width .22s ease, border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.ai-badge:hover,
.ai-badge:focus-visible {
  border-color: rgba(36, 107, 254, .34);
  background: rgba(255,255,255,.84);
  color: var(--ai-badge-color);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(15, 47, 93, .14);
}
.ai-badge:focus-visible {
  outline: 3px solid rgba(36, 107, 254, .18);
  outline-offset: 2px;
}
.ai-badge-symbol {
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}
.ai-badge-symbol svg,
.ai-badge-symbol .ai-badge-custom-icon svg {
  width: 13px;
  height: 13px;
  stroke-width: 1.9;
}
.ai-badge-text {
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transition: max-width .22s ease, opacity .16s ease;
}
.ai-badge-display-hover:hover .ai-badge-text,
.ai-badge-display-hover:focus-visible .ai-badge-text,
.ai-badge-display-full .ai-badge-text {
  max-width: 140px;
  opacity: 1;
}
.ai-badge-display-full {
  max-width: 190px;
}
.ai-badge-md {
  min-height: 34px;
  padding: 6px 10px;
  font-size: 12px;
}
.ai-badge-md .ai-badge-symbol {
  width: 20px;
  height: 20px;
}
.ai-badge-light {
  --ai-badge-bg: rgba(255,255,255,.46);
  --ai-badge-border: transparent;
}
.ai-badge-dark {
  --ai-badge-bg: rgba(9, 22, 49, .44);
  --ai-badge-border: transparent;
  --ai-badge-color: #fff;
}
.ai-badge-minimal {
  --ai-badge-bg: rgba(255,255,255,.22);
  --ai-badge-border: transparent;
  box-shadow: none;
}
.ai-badge-overlay {
  position: absolute;
  z-index: 4;
}
.ai-badge-page-hero {
  position: absolute;
  z-index: 5;
  right: max(24px, calc((100vw - 1500px) / 2 + 24px));
  top: 104px;
}
.page-hero .ai-badge-page-hero {
  top: 44px;
  right: 0;
}
.static-page > .ai-badge-page-hero,
.search-ai-badges .ai-badge-page-hero {
  position: static;
}
.search-ai-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0 0 14px;
}
.ai-badge-page-header,
.ai-badge-page-meta {
  margin: 0 0 12px;
}
.ai-badge-pos-bottom-right { right: 16px; bottom: 16px; }
.ai-badge-pos-bottom-left { left: 16px; bottom: 16px; }
.ai-badge-pos-top-right { right: 16px; top: 16px; }
.ai-badge-pos-top-left { left: 16px; top: 16px; }
.profile-visual {
  min-height: 360px;
  position: relative;
  display: block;
}
.detail-fish-fallback {
  width: min(720px, 92%);
  height: 190px;
  border-radius: 58% 44% 46% 58%;
  background:
    radial-gradient(circle at 18% 43%, #061734 0 10px, transparent 11px),
    linear-gradient(90deg, #d8f4ff, #2e9fd1 28%, #b6e2ee 52%, #2772ad 100%);
  box-shadow: inset 0 -26px 38px rgba(5,41,83,.22), 0 24px 60px rgba(12,78,130,.24);
}
.family-card {
  position: absolute;
  right: 0;
  bottom: 38px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
}
.family-card img,
.family-card > span:first-child {
  width: 44px;
  height: 34px;
  object-fit: contain;
  border-radius: 8px;
}
.family-card small,
.family-card strong { display: block; }
.family-card small { color: var(--muted); }
.profile-container {
  width: min(1500px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 4;
}
.profile-chips {
  width: min(100%, 650px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}
.profile-chip {
  --chip-color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 0;
  padding: 7px 10px 7px 8px;
  background: color-mix(in srgb, var(--chip-color) 12%, rgba(255,255,255,.78));
  border: 0;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(14,45,95,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.profile-chip-0 { --chip-color: #1d4ed8; }
.profile-chip-1 { --chip-color: #0ea5e9; }
.profile-chip-2 { --chip-color: #16a34a; }
.profile-chip-3 { --chip-color: #7c3aed; }
.profile-chip-4 { --chip-color: #0891b2; }
.profile-chip-5 { --chip-color: #f97316; }
.profile-chip > span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: color-mix(in srgb, var(--chip-color) 16%, #fff);
  color: var(--chip-color);
  border: 0;
}
.profile-stat > span {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--blue-soft);
  border: 1px solid var(--accent-border);
}
.profile-chip small,
.profile-chip strong,
.profile-stat small,
.profile-stat strong { display: block; }
.profile-chip small { display: none; }
.profile-stat small { color: var(--muted); font-size: 12px; }
.profile-chip strong {
  font-size: 12px;
  line-height: 1.1;
  font-weight: 520;
  color: #102349;
  overflow-wrap: anywhere;
}
.profile-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  margin: 0 0 22px;
  padding: 2px 0 6px;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}
.profile-tabs::-webkit-scrollbar {
  display: none;
}
.profile-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  scroll-snap-align: start;
}
.profile-tabs a:hover,
.profile-tabs a:focus-visible {
  background: var(--blue-soft);
  color: var(--blue);
}
.profile-stats {
  width: calc(100% - 318px);
  margin-left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 18px;
  padding: 18px;
}
.profile-side .profile-stats {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  background: transparent;
  border: 0;
  box-shadow: none;
  margin: 0;
  padding: 0;
}
.profile-stat {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  border-right: 1px solid var(--line);
  padding: 8px 18px;
}
.profile-stat:last-child { border-right: 0; }
.profile-stat strong {
  font-size: 21px;
  overflow-wrap: anywhere;
}
.profile-side .profile-stat {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 15px;
}
.profile-side .profile-stat:last-child {
  border: 1px solid var(--line);
}
.profile-side .profile-stat strong {
  font-size: 17px;
}
.profile-content {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 300px);
  gap: 18px;
}
.profile-main {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.profile-card,
.side-panel {
  min-width: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 16px 45px rgba(15, 37, 68, .07);
}
.profile-chip,
.profile-stat,
.profile-gallery,
.profile-side,
.profile-extra,
.profile-card *,
.side-panel *,
.profile-extra-card * {
  min-width: 0;
}
.features-card { min-height: 260px; }
.habitat-card img,
.distribution-card img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  margin-top: 14px;
}
.nutrition-card .prey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.prey-tile {
  display: grid;
  gap: 6px;
  justify-items: center;
  background: #f6f9fe;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  font-size: 12px;
  font-weight: 560;
}
.prey-tile img {
  width: 54px;
  height: 34px;
  object-fit: contain;
}
.profile-card {
  grid-column: span 2;
}
.profile-card-wide { grid-column: span 2; }
.profile-card h2,
.profile-gallery h2 {
  margin: 0 0 15px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 610;
  letter-spacing: 0;
  color: var(--navy);
  overflow-wrap: anywhere;
}
.profile-card p {
  margin: 0;
  color: #263954;
  font-size: 13.5px;
  line-height: 1.64;
  overflow-wrap: anywhere;
}
.profile-card p + p { margin-top: 11px; }
.range-map {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #041a26;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.range-map-canvas {
  position: relative;
  aspect-ratio: 16 / 8.5;
  min-height: 190px;
}
.range-map-canvas img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  margin: 0;
}
.range-points {
  position: absolute;
  inset: 0;
}
.range-point {
  position: absolute;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
}
.range-point i,
.range-point::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: 999px;
}
.range-point i {
  background: #22d3ee;
  border: 2px solid #fff;
  box-shadow: 0 0 18px rgba(34, 211, 238, .82);
  z-index: 2;
}
.range-point::after {
  background: rgba(34, 211, 238, .30);
  animation: rangePulse 1.9s ease-out infinite;
}
.range-point b {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 120px;
  overflow: hidden;
  color: rgba(255,255,255,.88);
  font-size: 11px;
  font-weight: 560;
  line-height: 1.15;
  text-shadow: 0 1px 8px rgba(0,0,0,.55);
  text-overflow: ellipsis;
  white-space: nowrap;
}
@keyframes rangePulse {
  0% { opacity: .85; transform: scale(1); }
  100% { opacity: 0; transform: scale(3.2); }
}
.range-map-legend {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.82);
  font-size: 12px;
}
.range-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.range-map-legend i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #1fb7a6;
  box-shadow: 0 0 0 4px rgba(31, 183, 166, .16);
}
.range-map-legend small {
  min-width: 0;
  color: rgba(255,255,255,.62);
  overflow: hidden;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.inline-fact {
  display: inline-grid;
  grid-template-columns: 22px minmax(0, auto) minmax(0, 1fr);
  gap: 7px;
  align-items: start;
  color: #263954;
  font-size: 13.5px;
  line-height: 1.5;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.inline-fact svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  stroke-width: 1.9;
  margin-top: 2px;
}
.profile-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #263954;
  font-size: 13.5px;
  line-height: 1.55;
  min-width: 0;
}
.profile-list li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  overflow-wrap: anywhere;
}
.profile-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-soft);
}
.profile-gallery {
  grid-column: span 2;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 16px 45px rgba(15, 37, 68, .07);
}
.special-card { grid-column: span 2; }
.profile-gallery div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.profile-gallery-item {
  position: relative;
  margin: 0;
  min-width: 0;
}
.profile-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.profile-side {
  display: grid;
  gap: 18px;
  align-content: start;
}
.side-panel > div {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.similar-panel h2 {
  font-size: 16px;
  margin: 0 0 12px;
  font-weight: 610;
}
.similar-panel a {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 10px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 12px 0;
}
.similar-panel a:first-of-type { border-top: 0; }
.similar-panel img {
  width: 58px;
  height: 34px;
  object-fit: contain;
}
.similar-panel small,
.similar-panel strong { display: block; }
.similar-panel small { color: var(--muted); }
.side-panel > div:first-child { padding-top: 0; }
.side-panel > div:last-child { border-bottom: 0; padding-bottom: 0; }
.side-panel strong,
.side-panel span,
.side-panel em { display: block; }
.side-panel strong { font-size: 13px; }
.side-panel span {
  color: #263954;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.45;
  font-style: normal;
  overflow-wrap: anywhere;
}
.side-panel em {
  color: var(--muted);
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.45;
  font-style: normal;
}
.side-status {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 11px;
  align-items: start;
}
.side-status > svg {
  width: 28px;
  height: 28px;
  padding: 5px;
  border-radius: 999px;
  stroke-width: 2;
}
.side-status-ok > svg {
  color: #15803d;
  background: #eaf7ee;
}
.side-status-warn > svg {
  color: #b7791f;
  background: #fff7df;
}
.side-status-danger > svg {
  color: #b42318;
  background: #fff0ee;
}
.side-status-info > svg {
  color: var(--blue);
  background: var(--blue-soft);
}
.water-panel {
  display: grid;
  gap: 14px;
}
.water-panel h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 590;
  color: var(--navy);
}
.water-panel h2 svg {
  width: 19px;
  height: 19px;
  color: var(--blue);
  stroke-width: 1.9;
}
.water-panel > div.water-range-list {
  display: grid;
  gap: 12px;
  border-bottom: 0;
  padding: 0;
}
.water-range-card {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 11px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #fbfdff, #f5f9ff);
}
.water-range-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  min-width: 0;
}
.side-panel .water-range-head span,
.side-panel .water-range-head strong {
  display: inline-flex;
}
.water-range-head span {
  align-items: center;
  gap: 7px;
  min-width: 0;
  margin: 0;
}
.water-range-head span svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--blue);
  stroke-width: 1.9;
}
.water-range-head b {
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 570;
  line-height: 1.2;
}
.water-range-head strong {
  max-width: 52%;
  color: #203653;
  font-size: 12.5px;
  font-weight: 560;
  line-height: 1.25;
  text-align: right;
  overflow-wrap: anywhere;
}
.water-range-track {
  position: relative;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7eef8;
}
.water-range-track span {
  display: block;
  position: absolute;
  inset: 0 auto 0 var(--from);
  width: calc(var(--to) - var(--from));
  min-width: 12px;
  margin: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, color-mix(in srgb, var(--blue) 70%, #7dd3fc), var(--blue));
  box-shadow: 0 0 0 1px rgba(255,255,255,.45) inset;
}
.water-range-scale {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1;
}
.water-range-card.is-text-only .water-range-head strong {
  max-width: none;
}
.profile-extra {
  width: 100%;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 4px 0 0;
  margin-top: 18px;
  box-shadow: none;
}
.profile-extra > h2 {
  margin: 2px 0 14px;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 610;
}
.profile-extra-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.profile-extra-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  padding: 18px;
  box-shadow: 0 14px 36px rgba(15, 37, 68, .06);
}
.profile-extra-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 13px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 610;
  color: var(--navy);
  overflow-wrap: anywhere;
}
.profile-extra-card h3 svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
  stroke-width: 1.9;
}
.profile-extra-card dl {
  display: grid;
  grid-template-columns: minmax(110px, .6fr) minmax(0, 1fr);
  gap: 8px;
  margin: 0;
  padding: 9px 0;
  border-top: 1px solid var(--line);
}
.profile-extra-card dl:first-of-type { border-top: 0; padding-top: 0; }
.profile-extra-card dt {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.profile-extra-card dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.52;
  color: #263954;
  overflow-wrap: anywhere;
}
.profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.profile-badges span {
  background: var(--blue-soft);
  color: var(--blue);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 560;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.field {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: #fbfdff;
  min-width: 0;
}
.field dt {
  color: var(--muted);
  font-weight: 560;
  margin-bottom: 5px;
}
.field dd { margin: 0; }
pre { white-space: pre-wrap; }
.muted { color: var(--muted); }

.site-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 34px 0 20px;
  margin-top: auto;
}
.site-footer-inner {
  width: min(1500px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, minmax(0, 1fr));
  gap: 32px;
}
.site-footer p,
.site-footer a,
.site-footer .cookie-settings-link {
  display: block;
  color: var(--muted);
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.45;
  text-align: left;
}
.site-footer .brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  margin: 0;
  color: var(--ink);
}
.site-footer .brand-logo {
  width: 46px;
  height: 46px;
  margin-top: 0;
}
.site-footer .brand-mark {
  width: 40px;
  height: 30px;
  align-self: center;
}
.site-footer .brand-text {
  line-height: 1;
}
.site-footer strong { display: block; margin-bottom: 10px; font-size: 13px; font-weight: 580; }
.footer-mini-label {
  display: block;
  margin: 13px 0 2px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 560;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.site-footer .cookie-settings-link {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
}
.site-footer .cookie-settings-link:hover,
.site-footer a:hover {
  color: var(--accent-ink);
}

@media (max-width: 1180px) {
  .topbar-inner { grid-template-columns: 220px 1fr auto auto; }
  .top-search, .account-link { display: none; }
  .category-strip, .item-grid, .home-feature-grid, .daily-picks { grid-template-columns: repeat(3, 1fr); }
  .topic-grid { grid-template-columns: repeat(3, 1fr); row-gap: 22px; }
  .topic-card:nth-child(3)::after { display: none; }
  .knowledge-strip { grid-template-columns: repeat(2, 1fr); }
  .knowledge-depth-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .knowledge-depth-copy { width: min(58%, 560px); }
  .knowledge-depth-visual { width: 50vw; height: 360px; }
  .ai-about-intro { grid-template-columns: 1fr; }
  .ai-principle-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ai-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ai-stats-grid div:nth-child(2n) { border-right: 0; }
  .ai-stats-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .category-explorer-copy { width: min(55%, 480px); }
  .category-image-mosaic {
    width: 430px;
  }
  .category-explorer-topics { width: 100%; }
  .category-explorer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .info-band { grid-template-columns: repeat(2, 1fr); }
  .site-footer-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .topbar {
    margin-bottom: -64px;
  }
  main > .site-main:first-child {
    padding-top: 64px;
  }
  body.header-mode-classic .topbar {
    margin-bottom: 0;
  }
  body.header-mode-classic main > .site-main:first-child {
    padding-top: 20px;
  }
  .topbar-inner, .site-main { width: min(100% - 18px, 1500px); }
  .topbar-inner {
    min-height: 64px;
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    gap: 10px;
    padding: 10px 0;
  }
  .brand {
    min-width: 0;
    font-size: 24px;
  }
  .brand span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .brand-logo {
    width: 34px;
    height: 34px;
  }
  .brand-mark {
    width: 34px;
    height: 26px;
    font-size: 15px;
    flex: 0 0 auto;
  }
  .plugin-page {
    padding: 18px 0 44px;
  }
  .plugin-page-head {
    margin-bottom: 12px;
  }
  .plugin-page-head h1 {
    font-size: clamp(28px, 9vw, 38px);
  }
  .plugin-page-head p:not(.eyebrow) {
    font-size: 14px;
  }
  .plugin-frame {
    min-height: 980px;
  }
  .topnav,
  .top-search,
  .account-link {
    display: none;
  }
  .mobile-search-trigger {
    display: grid;
  }
  .mobile-search-layer:not([hidden]) {
    display: block;
  }
  .audience-search-wrap,
  .home-search-panel {
    display: none;
  }
  .home-search-panel {
    grid-template-columns: 54px 1fr;
    gap: 14px;
    margin: -28px auto 34px;
    padding: 18px;
  }
  .home-search-icon {
    width: 48px;
    height: 48px;
  }
  .home-search-copy strong {
    font-size: 16px;
  }
  .home-search-copy span {
    font-size: 13px;
  }
  .home-search-form {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) 108px;
    min-height: 50px;
  }
  .home-search-form input {
    padding: 0 14px;
  }
  .home-search-form button {
    font-size: 13px;
  }
  .search-page {
    padding: 26px 0 48px;
  }
  .search-large-form {
    grid-template-columns: 42px minmax(0, 1fr) 40px;
    min-height: 52px;
  }
  .search-large-form > svg,
  .search-large-form > i {
    margin-left: 14px;
  }
  .search-result-row {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 12px;
  }
  .search-result-badge {
    grid-column: 2;
    justify-self: start;
    max-width: 100%;
  }
  .live-result-row {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    padding: 9px 10px;
  }
  .live-result-badge {
    max-width: 90px;
  }
  .topic-showcase {
    margin-bottom: 30px;
  }
  .topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 0;
  }
  .topic-card:nth-child(3)::after {
    display: block;
  }
  .topic-card:nth-child(2n)::after {
    display: none;
  }
  .topic-card {
    padding: 0 12px;
  }
  .knowledge-depth-section {
    min-height: 0;
    padding: 34px 16px 26px;
  }
  .knowledge-depth-copy {
    width: 100%;
    min-height: 214px;
    padding-right: min(40vw, 176px);
  }
  .knowledge-depth-copy .eyebrow,
  .knowledge-depth-topics .eyebrow {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .knowledge-depth-copy h2 {
    font-size: min(var(--section-title-size), clamp(30px, 9vw, 42px));
    margin-bottom: 16px;
  }
  .knowledge-depth-copy p:not(.eyebrow) {
    font-size: 15px;
  }
  .knowledge-depth-visual {
    position: absolute;
    top: -8px;
    right: -10px;
    width: min(46vw, 260px);
    height: 246px;
    margin: 0;
    border-radius: 58% 0 0 54% / 48% 0 0 52%;
  }
  .knowledge-depth-topics {
    margin-top: 20px;
  }
  .knowledge-depth-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .knowledge-depth-card {
    min-height: 0;
    padding: 24px 18px 22px;
  }
  .knowledge-depth-card > span {
    width: 76px;
    height: 76px;
    margin-bottom: 18px;
  }
  .knowledge-depth-card svg {
    width: 34px;
    height: 34px;
  }
  .knowledge-depth-card strong {
    margin-bottom: 26px;
    font-size: 15px;
  }
  .knowledge-depth-card em {
    font-size: 14px;
  }
  .ai-about-section {
    gap: 22px;
  }
  .ai-about-intro {
    gap: 22px;
  }
  .ai-about-intro h2 {
    font-size: min(var(--section-title-size), clamp(28px, 8vw, 38px));
  }
  .ai-about-image {
    min-height: 250px;
  }
  .ai-about-image blockquote {
    width: min(80%, 340px);
    left: 18px;
    bottom: 18px;
    padding: 14px 16px;
  }
  .ai-principle-grid,
  .ai-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ai-principle-card {
    min-height: 0;
  }
  .ai-mission-strip {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .ai-mission-strip > span {
    justify-content: start;
  }
  .ai-mission-strip > span svg {
    width: 68px;
    height: 68px;
  }
  .category-explorer-section {
    min-height: 0;
    padding: 32px 16px 26px;
  }
  .category-explorer-copy,
  .category-explorer-topics {
    width: 100%;
  }
  .category-explorer-copy {
    min-height: 196px;
    padding-right: min(40vw, 176px);
  }
  .category-explorer-copy h2 {
    font-size: min(var(--section-title-size), clamp(30px, 9vw, 42px));
  }
  .category-image-mosaic {
    position: absolute;
    top: -8px;
    right: -10px;
    width: min(46vw, 260px);
    height: 246px;
    min-height: 0;
    margin: 0;
    border-radius: 58% 0 0 54% / 48% 0 0 52%;
  }
  .category-explorer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mobile-menu-button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    color: var(--ink);
    padding: 0;
  }
  .flx-burger {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: rgba(255,255,255,.78);
    color: var(--blue);
    cursor: pointer;
  }
  .flx-burger svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.15;
  }
  .flx-scrim:not([hidden]),
  .flx-drawer:not([hidden]) {
    display: block;
  }
  .mobile-menu-button svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.9;
  }
  .mobile-menu-panel {
    width: min(100% - 18px, 1500px);
    margin: 0 auto 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 18px 40px rgba(14,45,95,.12);
    padding: 12px;
  }
  .mobile-menu-panel:not([hidden]) {
    display: grid;
    gap: 12px;
  }
  .mobile-search {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 8px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px;
    background: #fff;
  }
  .mobile-search input {
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 9px 12px;
    font: inherit;
    color: var(--ink);
  }
  .mobile-search button {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--blue);
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    padding: 0;
  }
  .mobile-nav {
    display: grid;
    gap: 3px;
  }
  .mobile-nav strong {
    margin: 12px 8px 4px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 620;
    text-transform: uppercase;
    letter-spacing: .05em;
  }
  .mobile-nav strong:first-child {
    margin-top: 0;
  }
  .mobile-cache-clear-form {
    margin: 0;
  }

  .mobile-nav a,
  .mobile-cache-clear-form button {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 42px;
    border-radius: 12px;
    padding: 9px 10px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 14px;
    font-weight: 480;
    font-family: inherit;
    text-align: left;
  }

  .mobile-nav a:hover,
  .mobile-nav a.active,
  .mobile-cache-clear-form button:hover {
    background: var(--blue-soft);
    color: var(--blue);
  }
  .hero-inner {
    width: min(100% - 18px, 1500px);
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    padding: 34px 0 36px;
  }
  .hero { min-height: auto; }
  .hero-bg { background-position: 62% center; opacity: .58; }
  .hero::after {
    background:
      linear-gradient(180deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.9) 54%, rgba(232,244,255,.72) 100%);
  }
  h1,
  .profile-hero-inner h1 {
    max-width: 100%;
    font-size: min(var(--hero-title-size), clamp(36px, 12vw, 48px));
    line-height: 1.02;
    margin-bottom: 14px;
  }
  .hero-copy,
  .profile-copy,
  .audience-hero-copy {
    min-width: 0;
    padding-top: 0;
    padding-left: 0;
  }
  .hero-eyebrow,
  .eyebrow {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .hero-subtitle,
  .latin {
    max-width: 100%;
    font-size: min(var(--subtitle-size), 19px);
    line-height: 1.25;
    margin: -4px 0 12px;
    overflow-wrap: anywhere;
  }
  .hero-text,
  .profile-intro {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.56;
    margin-bottom: 20px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .primary-link,
  .secondary-link {
    width: auto;
    min-width: 0;
    justify-content: center;
    padding: 11px 9px;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
  }
  .primary-link svg,
  .secondary-link svg {
    flex: 0 0 auto;
    width: 15px;
    height: 15px;
  }
  .hero-visual { min-height: 210px; }
  .fish-shape { left: 4%; right: auto; width: 72%; transform: scale(.78); transform-origin: left center; }
  .hero-fish-image { left: 0; right: auto; width: 100%; height: 205px; object-position: center; }
  .hero-note {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    transform: none;
    width: min(100%, 360px);
    padding: 13px;
  }
  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
  .hero-fact {
    grid-template-columns: 26px 1fr;
    gap: 1px 8px;
  }
  .hero-fact svg {
    width: 26px;
    height: 26px;
    padding: 5px;
  }
  .hero-fact b,
  .hero-fact em {
    font-size: 11px;
  }
  .range-map-legend {
    display: grid;
    gap: 7px;
  }
  .range-map-legend small {
    text-align: left;
    white-space: normal;
  }
  .category-strip, .item-grid, .info-band, .site-footer-inner, .home-feature-grid, .daily-picks, .topic-grid, .knowledge-strip, .quick-discovery { grid-template-columns: 1fr; }
  .home-feature-grid,
  .knowledge-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .species-discovery {
    margin: 32px 0 38px;
    padding-top: 30px;
  }
  .species-discovery-head {
    display: grid;
    gap: 18px;
    margin-bottom: 24px;
  }
  .species-discovery-head h2 {
    font-size: clamp(27px, 8vw, 38px);
  }
  .species-discovery-head > a {
    justify-self: start;
  }
  .item-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .item-card {
    grid-template-rows: 126px 1fr;
  }
  .item-image,
  .item-image img {
    height: 126px;
    min-height: 126px;
  }
  .item-body {
    padding: 11px 10px 12px;
  }
  .item-facts {
    gap: 6px 9px;
  }
  .item-facts em:not(:last-child) {
    padding-right: 9px;
  }
  .category-strip { margin-top: 0; }
  .quick-chip-row { justify-content: flex-start; }
  .daily-pick { grid-template-columns: 96px 1fr; }
  .daily-pick img { width: 96px; height: 78px; }
  .info-band div { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
  .info-band div:last-child { border-bottom: 0; }
  .profile-hero-inner {
    width: min(100% - 18px, 1500px);
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    padding: 28px 0 34px;
  }
  .profile-hero-bleed { min-height: auto; }
  .profile-hero-bg { background-size: cover; background-position: 62% center; opacity: .55; }
  .profile-hero-bleed::after {
    background:
      linear-gradient(180deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.9) 56%, rgba(232,244,255,.7) 100%);
  }
  .breadcrumbs {
    gap: 7px;
    flex-wrap: wrap;
    font-size: 12px;
    margin-bottom: 14px;
  }
  .profile-visual { min-height: 120px; }
  .family-card { right: 0; bottom: 8px; }
  .profile-chips { margin-top: -42px; }
  .profile-container { width: min(100% - 18px, 1500px); }
  .profile-chips {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .profile-stats,
  .profile-content,
  .profile-main { width: 100%; grid-template-columns: 1fr; }
  .profile-stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .profile-stat:last-child { border-bottom: 0; }
  .profile-card,
  .profile-card-wide,
  .profile-gallery,
  .profile-extra,
  .special-card { grid-column: auto; }
  .profile-gallery div { grid-template-columns: 1fr; }
  .nutrition-card .prey-grid { grid-template-columns: 1fr; }
  .profile-extra-grid,
  .profile-extra-card dl { grid-template-columns: 1fr; }
  .item-grid { margin-bottom: 34px; }
}

@media (max-width: 520px) {
  .scroll-top-button {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }
  .frontend-notice,
  .mobile-menu-panel,
  .topbar-inner,
  .site-main,
  .hero-inner,
  .profile-hero-inner,
  .profile-container {
    width: min(100% - 12px, 1500px);
  }
  .hero-inner {
    padding-top: 28px;
  }
  h1,
  .profile-hero-inner h1 {
    font-size: min(var(--hero-title-size), clamp(33px, 11vw, 42px));
  }
  .hero-subtitle,
  .latin {
    font-size: min(var(--subtitle-size), 17px);
  }
  .hero-text,
  .profile-intro {
    font-size: 13.5px;
  }
  .home-search-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .home-search-icon {
    margin: 0 auto;
  }
  .home-search-form {
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 8px;
  }
  .home-search-form input {
    min-height: 48px;
    padding: 0 12px;
    text-align: left;
  }
  .home-search-form button {
    min-width: 48px;
    min-height: 46px;
  }
  .home-search-form button span {
    display: none;
  }
  .topic-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .topic-card {
    grid-template-columns: 56px 1fr;
    justify-items: start;
    min-height: 72px;
    text-align: left;
  }
  .topic-card:not(:last-child)::after {
    display: none;
  }
  .topic-card > span {
    grid-row: span 2;
    width: 50px;
    height: 50px;
  }
  .knowledge-depth-section {
    border-radius: 16px;
    padding: 24px 12px 20px;
  }
  .knowledge-depth-copy {
    min-height: 168px;
    padding-right: 38vw;
  }
  .knowledge-depth-visual {
    width: 43vw;
    height: 174px;
    border-radius: 58% 0 0 54% / 48% 0 0 52%;
  }
  .knowledge-depth-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .knowledge-depth-card {
    min-height: 0;
    padding: 16px 10px;
  }
  .knowledge-depth-card > span {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
  }
  .knowledge-depth-card svg {
    width: 25px;
    height: 25px;
  }
  .knowledge-depth-card strong {
    margin-bottom: 20px;
    font-size: 12px;
  }
  .knowledge-depth-card em {
    font-size: 12px;
  }
  .knowledge-depth-foot {
    font-size: 15px;
  }
  .ai-principle-grid,
  .ai-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .ai-principle-card {
    padding: 16px 12px;
  }
  .ai-principle-card > span {
    width: 46px;
    height: 46px;
    margin-bottom: 12px;
  }
  .ai-principle-card strong {
    font-size: 11px;
  }
  .ai-principle-card em {
    font-size: 11.5px;
  }
  .ai-stats-grid div,
  .ai-stats-grid div:nth-child(2n),
  .ai-stats-grid div:nth-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .ai-stats-grid div:last-child {
    border-bottom: 0;
  }
  .ai-about-image blockquote {
    width: calc(100% - 28px);
    left: 14px;
    bottom: 14px;
  }
  .ai-about-section {
    border-radius: 16px;
    padding: 24px 12px 20px;
  }
  .category-explorer-section {
    border-radius: 16px;
    padding: 24px 12px 20px;
  }
  .category-explorer-copy {
    min-height: 156px;
    padding-right: 38vw;
  }
  .category-image-mosaic {
    width: 43vw;
    height: 174px;
    min-height: 0;
    border-radius: 58% 0 0 54% / 48% 0 0 52%;
  }
  .category-explorer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .category-explorer-card {
    min-height: 0;
    padding: 16px 12px;
  }
  .category-explorer-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 0;
  }
  .category-explorer-card svg {
    width: 23px;
    height: 23px;
  }
  .static-content {
    padding: 20px;
  }
  .daily-pick {
    grid-template-columns: 1fr;
  }
  .daily-pick img {
    width: 100%;
    height: 150px;
  }
  .hero-note {
    width: 100%;
  }
  .hero-facts {
    grid-template-columns: 1fr;
  }
  .profile-chips {
    gap: 10px;
  }
  .profile-chip,
  .profile-stat,
  .profile-card,
  .side-panel,
  .profile-gallery,
  .profile-extra-card {
    padding: 16px;
  }
  .category-card,
  .item-card {
    border-radius: 12px;
  }
  .item-card {
    grid-template-columns: 1fr;
    grid-template-rows: 112px 1fr;
    padding: 0;
  }
  .item-card .item-image {
    width: 100%;
    height: 112px;
    min-height: 112px;
  }
  .item-card .item-image img {
    height: 112px;
  }
  .item-body strong {
    font-size: 12px;
  }
  .item-body small {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .item-facts em {
    font-size: 10px;
  }
}

/* Base polish */
.top-search button svg,
.account-link svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.9;
}
.category-icon svg,
.profile-chip svg,
.profile-stat svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}
.profile-stat > span {
  display: grid;
  place-items: center;
  color: var(--blue);
}
.profile-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  padding-left: 0;
}
.profile-list li::before {
  content: "";
  position: static;
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border: 0;
  background: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-soft);
  border-radius: 999px;
  margin-right: 0;
}
.prey-tile,
.profile-badges span,
.field dt,
.item-body em,
.section-head a {
  font-weight: 560;
}

/* Advertising and consent */
.ad-region {
  margin-top: 28px;
  margin-bottom: 28px;
  max-width: 100%;
}
.ad-slot {
  display: grid;
  align-content: center;
  gap: 5px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 112px;
  padding: 15px 20px;
  border-radius: 12px;
  text-align: center;
  overflow-wrap: anywhere;
  box-sizing: border-box;
}
.ad-slot small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.ad-slot strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 540;
}
.ad-slot span,
.ad-consent-placeholder {
  color: var(--muted);
  font-size: 12px;
}
.ad-slot-preview {
  border: 1px dashed var(--accent-border);
  background: color-mix(in srgb, var(--blue) 4%, #fff);
}
.ad-slot-live {
  border: 1px solid var(--line);
  background: #fff;
}
.ad-slot-rectangle {
  max-width: 330px;
  min-height: 250px;
  margin-inline: auto;
}
.ad-slot-vertical {
  max-width: 230px;
  min-height: 350px;
  margin-inline: auto;
}
.profile-container > .ad-slot {
  margin: 22px 0 26px;
}
.page-hero + .ad-slot,
.search-page > .ad-slot {
  margin: 20px 0 30px;
}
.profile-side .ad-slot {
  margin-bottom: 16px;
}
.ad-slot .adsbygoogle {
  width: 100%;
}
.cookie-settings-link {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  text-align: left;
  cursor: pointer;
}
.cookie-settings-link:hover {
  color: var(--blue);
}
.consent-layer {
  position: fixed;
  inset: auto 0 0;
  z-index: 90;
  padding: 16px 20px 20px;
  background: linear-gradient(transparent, rgba(7,24,59,.08));
}
.consent-layer[hidden],
.consent-modal-backdrop[hidden] {
  display: none !important;
}
.consent-banner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(7,24,59,.18);
}
.consent-copy {
  max-width: 670px;
}
.consent-copy h2,
.consent-modal h2 {
  margin: 0 0 8px;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 560;
}
.consent-copy p,
.consent-modal > p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
}
.consent-ai-note {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin: 4px 0 11px;
  padding: 10px 12px;
  border: 1px solid rgba(36, 107, 254, .15);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(244, 249, 255, .92), rgba(255,255,255,.96));
}
.consent-ai-note span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
}
.consent-ai-note svg {
  width: 15px;
  height: 15px;
}
.consent-ai-note p {
  margin: 0;
  color: #334663;
  font-size: 12px;
  line-height: 1.45;
}
.consent-ai-note a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 540;
  white-space: nowrap;
}
.consent-copy nav {
  display: flex;
  gap: 16px;
  color: var(--blue);
  font-size: 12px;
}
.consent-actions,
.consent-modal-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
}
.consent-button {
  min-height: 43px;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid var(--accent-border);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}
.consent-button.primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}
.consent-button.secondary {
  background: #fff;
  color: var(--ink);
}
.consent-button:hover {
  border-color: var(--blue);
}
.consent-button.primary:hover {
  filter: brightness(.96);
}
.consent-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(7,24,59,.32);
}
body.consent-modal-open {
  overflow: hidden;
}
.consent-modal {
  width: min(590px, 100%);
  padding: 23px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(7,24,59,.24);
}
.consent-modal-head {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: start;
}
.consent-modal-head button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}
.consent-modal-head svg {
  width: 17px;
  height: 17px;
}
.consent-category {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin: 12px 0 0;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 11px;
  cursor: pointer;
}
.consent-category.is-required {
  background: #f8fbff;
  cursor: default;
}
.consent-category strong,
.consent-category span {
  display: block;
}
.consent-category strong {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 540;
}
.consent-category span {
  color: var(--muted);
  font-size: 12px;
}
.consent-category input {
  width: 20px;
  height: 20px;
  accent-color: var(--blue);
  flex: 0 0 auto;
}
.consent-modal-actions {
  justify-content: end;
  margin-top: 20px;
}
.consent-layer:not([hidden]) ~ .scroll-top-button {
  bottom: 176px;
}

@media (max-width: 760px) {
  .mobile-search-dialog {
    top: 72px;
    left: 9px;
    right: 9px;
    width: auto;
    transform: translateY(-8px);
  }
  .mobile-search-layer.open .mobile-search-dialog {
    transform: translateY(0);
  }
  .ad-region {
    margin-top: 18px;
    margin-bottom: 18px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }
  .ad-slot {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 92px;
    padding: 13px;
    overflow: hidden;
  }
  .ad-slot-rectangle,
  .ad-slot-vertical {
    max-width: none;
    min-height: 108px;
  }
  .consent-layer {
    padding: 9px;
  }
  .consent-banner {
    display: grid;
    gap: 15px;
    padding: 17px;
    border-radius: 13px;
  }
  .consent-ai-note {
    grid-template-columns: 28px minmax(0, 1fr);
  }
  .consent-ai-note a {
    grid-column: 2;
  }
  .consent-actions,
  .consent-modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .consent-actions [data-consent-custom] {
    grid-column: 1 / -1;
  }
  .consent-modal {
    padding: 18px;
  }
  .consent-button {
    width: 100%;
  }
  .consent-layer:not([hidden]) ~ .scroll-top-button {
    display: none;
  }
  .ai-badge,
  .ai-badge-display-icon,
  .ai-badge-display-hover {
    min-height: 24px;
    max-width: 28px;
    padding: 3px 5px;
    border-color: transparent;
    background: rgba(255,255,255,.28);
    font-size: 9px;
  }
  .ai-badge-display-icon .ai-badge-text,
  .ai-badge-display-hover .ai-badge-text {
    max-width: 0;
    opacity: 0;
  }
  .ai-badge-display-full {
    max-width: 160px;
  }
  .ai-badge-display-full .ai-badge-text {
    max-width: 120px;
    opacity: 1;
  }
  .ai-badge-symbol {
    width: 14px;
    height: 14px;
  }
  .ai-badge-symbol svg,
  .ai-badge-symbol .ai-badge-custom-icon svg {
    width: 12px;
    height: 12px;
  }
  .ai-badge-pos-bottom-right { right: 10px; bottom: 10px; }
  .ai-badge-pos-bottom-left { left: 10px; bottom: 10px; }
  .ai-badge-pos-top-right { right: 10px; top: 10px; }
  .ai-badge-pos-top-left { left: 10px; top: 10px; }
}

/* Zielgruppen-Seiten und Praxiswissen */
.topnav {
  gap: clamp(12px, 1.45vw, 26px);
}
.audience-page {
  padding-bottom: 58px;
}
.audience-hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: #edf5ff;
}
.audience-hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--audience-image);
  background-position: center 44%;
  background-size: cover;
  filter: saturate(1.03) contrast(1.02);
}
.audience-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.92) 32%, rgba(255,255,255,.38) 55%, rgba(255,255,255,.08) 100%);
}
.audience-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1500px, calc(100% - 48px));
  min-height: 650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(410px, 570px) minmax(260px, 320px);
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  padding: 44px 0 70px;
}
.audience-hero-copy .eyebrow {
  margin: 0 0 13px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}
.audience-hero-copy {
  align-self: start;
  padding-top: 70px;
}
.audience-hero-copy h1 {
  margin: 0 0 17px;
  max-width: 590px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(44px, 4.2vw, 63px);
  font-weight: 650;
  line-height: 1.05;
}
.audience-hero-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin: 0 0 27px;
  color: #3d4a61;
  font-size: 15px;
  line-height: 1.65;
}
.audience-hero-card {
  align-self: end;
  display: grid;
  gap: 10px;
  margin-bottom: 60px;
  padding: 18px;
  border: 1px solid rgba(211,224,242,.9);
  border-radius: 13px;
  background: rgba(255,255,255,.93);
  box-shadow: 0 18px 42px rgba(14,45,95,.13);
}
.audience-hero-card > small {
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
.audience-hero-card > strong {
  margin-bottom: 3px;
  font-size: 16px;
  font-weight: 610;
}
.audience-hero-card > span {
  display: grid;
  grid-template-columns: 29px minmax(0, 1fr);
  gap: 1px 8px;
  align-items: start;
}
.audience-hero-card > span svg {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  padding: 6px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
}
.audience-hero-card b {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}
.audience-hero-card em {
  min-width: 0;
  color: #253955;
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.audience-hero-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 540;
}
.audience-hero-card a svg {
  width: 14px;
  height: 14px;
}
.audience-search-wrap {
  position: relative;
  z-index: 6;
  width: min(640px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
  margin-top: -48px;
  margin-bottom: 38px;
}
.audience-search {
  display: grid;
  grid-template-columns: 1fr;
  gap: 13px;
  align-items: center;
  padding: 17px 19px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 24px 55px rgba(14,45,95,.13);
}
.audience-search-label {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 2px 12px;
  align-items: center;
}
.audience-search-label svg {
  grid-row: span 2;
  width: 45px;
  height: 45px;
  padding: 12px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
}
.audience-search-label strong {
  color: var(--accent-ink);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 620;
  text-transform: uppercase;
}
.audience-search-label span {
  color: var(--muted);
  font-size: 12px;
}
.audience-search-form {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px;
  gap: 10px;
}
.audience-search-form input {
  min-width: 0;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid #c5d6ef;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.audience-search-form input:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-soft);
}
.audience-search-form button {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blue);
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 530;
  cursor: pointer;
}
.audience-search-form button svg {
  width: 16px;
  height: 16px;
}
.custom-home-section.has-fangindex-cta {
  margin: -18px 0 40px;
}
.fangindex-cta {
  display: grid;
  grid-template-columns: 56px minmax(280px, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 17px 20px;
  border: 1px solid color-mix(in srgb, var(--blue) 20%, #fff);
  border-radius: 14px;
  background: linear-gradient(105deg, color-mix(in srgb, var(--blue) 7%, #fff), #fff 48%, color-mix(in srgb, var(--blue) 5%, #fff));
  box-shadow: 0 17px 40px rgba(14,45,95,.07);
}
.fangindex-cta-symbol {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 15px;
  background: var(--blue-soft);
  color: var(--blue);
}
.fangindex-cta-symbol svg {
  width: 26px;
  height: 26px;
}
.fangindex-cta-copy .eyebrow {
  margin: 0 0 5px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
.fangindex-cta-copy h2 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 580;
  line-height: 1.22;
}
.fangindex-cta-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: #52627a;
  font-size: 13px;
  line-height: 1.45;
}
.fangindex-cta-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  min-height: 45px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 530;
}
.fangindex-cta-link:hover {
  background: var(--accent-ink);
}
.fangindex-cta-link svg {
  width: 16px;
  height: 16px;
}
.audience-benefits {
  margin: 0 0 42px;
  padding: 25px 24px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}
.audience-benefits h2 {
  margin: 0 0 20px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
}
.audience-benefits > div {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.audience-benefit {
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 5px 17px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.audience-benefit:last-child {
  border-right: 0;
}
.audience-benefit svg {
  width: 37px;
  height: 37px;
  padding: 9px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
}
.audience-benefit strong {
  color: var(--accent-ink);
  font-size: 12px;
  font-weight: 600;
}
.audience-benefit span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}
.audience-species {
  margin: 0 0 48px;
}
.audience-species > header,
.audience-practice > header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}
.audience-species h2,
.audience-practice h2 {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.14;
  font-weight: 560;
}
.audience-species header > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--accent-border);
  border-radius: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 530;
  white-space: nowrap;
}
.audience-species header > a svg {
  width: 15px;
  height: 15px;
}
.audience-note {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 13px;
}
.audience-item-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}
.audience-item-card {
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 0;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 13px 31px rgba(14,45,95,.06);
  transition: transform .16s ease, box-shadow .16s ease;
}
.audience-item-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 35px rgba(14,45,95,.12);
}
.audience-item-media {
  position: relative;
  display: block;
  overflow: hidden;
}
.audience-item-media > img {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: 70% center;
  background: #edf5ff;
}
.audience-item-card > strong {
  margin: 13px 13px 0;
  color: var(--accent-ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}
.audience-item-card > em {
  margin: 3px 13px 10px;
  color: var(--muted);
  font-size: 12px;
  font-style: italic;
}
.audience-item-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: auto 13px 13px;
  padding-top: 10px;
}
.audience-item-facts span {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  min-width: 0;
  color: #52627a;
  font-size: 10px;
}
.audience-item-facts svg {
  width: 13px;
  height: 13px;
  color: var(--blue);
}
.audience-practice {
  margin: 0;
  padding: 35px 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(120deg, #fff, #f2f7ff);
}
.audience-practice > header {
  display: block;
  max-width: 650px;
  margin-bottom: 24px;
}
.audience-practice > header > p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.audience-practice > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.audience-practice-card {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.audience-practice-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--accent-ink);
  font-size: 15px;
  font-weight: 600;
}
.audience-practice-card h3 img {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #eef5ff;
  object-fit: cover;
  object-position: 70% center;
}
.audience-practice-card h3 span {
  min-width: 0;
  line-height: 1.25;
}
.audience-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 20px;
  border: 1px dashed var(--line);
  border-radius: 10px;
  background: #fff;
}
.audience-practice-card p {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 2px 8px;
  margin: 0;
  padding: 10px 0;
}
.audience-practice-card p svg {
  grid-row: span 2;
  width: 16px;
  height: 16px;
  color: var(--blue);
}
.audience-practice-card p b,
.audience-practice-card p span {
  display: block;
  min-width: 0;
}
.audience-practice-card p b {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}
.audience-practice-card p span {
  color: #2c3c55;
  font-size: 12px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.audience-practice-card a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-top: 13px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 520;
}
.audience-practice-card a svg {
  width: 13px;
  height: 13px;
}
.profile-audiences {
  display: grid;
  gap: 16px;
  width: 100%;
  margin: 32px 0 12px;
}
.profile-audiences > header {
  margin-top: 8px;
}
.profile-audiences > header h2 {
  margin: 5px 0 2px;
  font-size: 18px;
  font-weight: 610;
}
.profile-audience-card {
  min-width: 0;
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(15,37,68,.06);
}
.profile-audience-heading {
  display: flex;
  gap: 13px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}
.profile-audience-heading::-webkit-details-marker {
  display: none;
}
.profile-audience-heading > span {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
}
.profile-audience-heading > span svg {
  width: 24px;
  height: 24px;
}
.profile-audience-heading .eyebrow {
  margin: 0 0 2px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
}
.profile-audience-heading h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 610;
}
.profile-audience-heading em {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}
.profile-audience-toggle {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-left: auto;
  color: var(--muted);
  transition: transform .18s ease;
}
.profile-audience-card[open] .profile-audience-toggle {
  transform: rotate(180deg);
}
.profile-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.profile-audience-fact {
  min-width: 0;
  padding: 13px;
  border-radius: 10px;
  background: #f8fbff;
}
.profile-audience-fact svg {
  display: block;
  width: 19px;
  height: 19px;
  margin-bottom: 8px;
  color: var(--blue);
}
.profile-audience-fact small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
}
.profile-audience-fact p {
  margin: 0;
  color: #253955;
  font-size: 12px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.profile-audience-fact.is-value {
  min-height: 103px;
  background: var(--blue-soft);
  border: 1px solid color-mix(in srgb, var(--blue) 13%, #fff);
}
.profile-audience-fact.is-value p {
  color: var(--accent-ink);
  font-size: 14px;
  font-weight: 550;
  line-height: 1.35;
}
@media (max-width: 1180px) {
  .audience-benefits > div,
  .audience-item-grid,
  .audience-practice > div,
  .profile-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .audience-benefit:nth-child(2n) {
    border-right: 0;
  }
  .audience-benefit {
    padding: 13px 17px;
    border-bottom: 1px solid var(--line);
  }
  .audience-benefit:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}
@media (max-width: 820px) {
  .audience-page {
    padding-bottom: 36px;
  }
  .audience-hero {
    min-height: 0;
  }
  .audience-hero::after {
    background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(255,255,255,.89) 62%, rgba(235,245,255,.75));
  }
  .audience-hero-bg {
    background-position: 66% center;
    opacity: .62;
  }
  .audience-hero-inner {
    width: min(100% - 18px, 1500px);
    min-height: 0;
    display: block;
    padding: 34px 0 72px;
  }
  .audience-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 46px);
  }
  .audience-hero-copy > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 14px;
  }
  .audience-hero-card {
    max-width: 360px;
    margin: 25px 0 0;
  }
  .audience-search-wrap {
    margin-top: -42px;
    margin-bottom: 25px;
  }
  .audience-search {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
  }
  .audience-search-form {
    grid-template-columns: minmax(0, 1fr) 52px;
  }
  .audience-search-form button span {
    display: none;
  }
  .audience-benefits {
    margin-bottom: 30px;
    padding: 18px 10px;
  }
  .audience-benefits h2 {
    font-size: 20px;
  }
  .audience-benefit {
    padding: 11px 7px;
  }
  .audience-species > header,
  .audience-practice > header {
    align-items: start;
    flex-direction: column;
  }
  .audience-species h2,
  .audience-practice h2 {
    font-size: 27px;
  }
  .audience-item-grid {
    gap: 10px;
  }
  .audience-item-media > img {
    height: 124px;
  }
  .audience-item-card > strong,
  .audience-item-card > em {
    margin-left: 10px;
    margin-right: 10px;
  }
  .audience-item-facts {
    margin-left: 10px;
    margin-right: 10px;
  }
  .audience-practice {
    padding: 22px 13px;
  }
  .profile-audience-card {
    padding: 15px;
  }
  .profile-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .audience-hero-inner {
    width: min(100% - 12px, 1500px);
    padding-top: 27px;
  }
  .audience-hero-copy h1 {
    font-size: clamp(31px, 10vw, 39px);
  }
  .audience-search-wrap {
    width: min(100% - 12px, 1500px);
  }
  .audience-search-label {
    grid-template-columns: 42px 1fr;
  }
  .audience-search-label svg {
    width: 39px;
    height: 39px;
    padding: 10px;
  }
  .audience-benefits > div,
  .audience-item-grid,
  .profile-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .audience-practice > div {
    grid-template-columns: 1fr;
  }
  .audience-item-media > img {
    height: 105px;
  }
  .audience-item-facts span:nth-child(n+3) {
    display: none;
  }
  .profile-audience-fact {
    padding: 11px 9px;
  }
}

/* Fischbestimmung */
.identification-page { padding: 38px 0 64px; }
.identification-heading { position: relative; max-width: 760px; margin-bottom: 30px; }
.identification-heading h1 {
  margin: 10px 0 13px;
  font-family: var(--font-display);
  font-size: min(var(--section-title-size), 52px);
  line-height: 1.08;
  font-weight: 560;
}
.identification-lead {
  margin: 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.identification-workbench {
  display: grid;
  grid-template-columns: minmax(440px, 1.05fr) minmax(360px, .86fr);
  gap: 20px;
  align-items: start;
}
.identification-builder,
.identification-results {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(14,45,95,.05);
}
.identification-builder { padding: 20px; }
.identification-visual {
  border: 1px solid #e7eef8;
  border-radius: 10px;
  background: linear-gradient(145deg, #f5faff 0%, #edf5ff 100%);
  padding: 18px 18px 14px;
  margin-bottom: 18px;
}
.identification-fish { display: block; width: 100%; height: auto; max-height: 240px; }
.identification-fish .fish-body,
.identification-fish .fish-tail {
  fill: #d9e9fa;
  stroke: var(--blue);
  stroke-width: 3;
}
.identification-fish .fish-tail { fill: #bfd9f4; }
.identification-fish .fish-fin {
  fill: #cee2f6;
  stroke: var(--blue);
  stroke-width: 2.5;
}
.identification-fish .fish-mouth,
.identification-fish .fish-eye {
  fill: #fff;
  stroke: var(--blue);
  stroke-width: 3;
}
.identification-fish .fish-eye-core { fill: var(--blue); }
.identification-fish .fish-lines {
  fill: none;
  stroke: color-mix(in srgb, var(--blue) 45%, #fff);
  stroke-width: 2;
}
.identification-visual-caption {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 2px 4px 0;
}
.identification-visual-caption svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  color: var(--blue);
}
.identification-visual-caption strong,
.identification-visual-caption span { display: block; }
.identification-visual-caption strong { font-size: 13px; font-weight: 560; }
.identification-visual-caption span { color: var(--muted); font-size: 12px; }
.identification-step-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
  margin-bottom: 18px;
}
.identification-tab {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 7px;
  min-height: 76px;
  padding: 10px 5px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  color: var(--muted);
  font: inherit;
  font-size: 11.5px;
  cursor: pointer;
}
.identification-tab svg { width: 20px; height: 20px; stroke-width: 1.8; }
.identification-tab:hover,
.identification-tab.active {
  border-color: var(--accent-border);
  background: var(--blue-soft);
  color: var(--blue);
}
.identification-tab.selected { color: var(--blue); }
.identification-tab.selected::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 7px;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--blue);
}
.identification-options {
  min-height: 94px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfdff;
}
.identification-options p {
  margin: 0 0 11px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 540;
}
.identification-choice-list { display: flex; flex-wrap: wrap; gap: 8px; }
.identification-choice {
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}
.identification-choice:hover,
.identification-choice.active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}
.identification-reset {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 15px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
}
.identification-reset:hover { color: var(--blue); }
.identification-reset svg { width: 15px; height: 15px; }
.identification-results { padding: 20px; }
.identification-results-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  margin-bottom: 16px;
}
.identification-results-head .eyebrow { margin: 0 0 5px; }
.identification-results-head h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 540;
}
.identification-selection-count {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 12px;
}
.identification-name-filter { position: relative; display: block; margin: 0 0 16px; }
.identification-name-filter svg {
  position: absolute;
  top: 12px;
  left: 13px;
  width: 17px;
  height: 17px;
  color: var(--muted);
}
.identification-name-filter input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px 12px 10px 40px;
  color: var(--ink);
  font: inherit;
}
.identification-name-filter input:focus {
  outline: 2px solid var(--blue-soft);
  border-color: var(--accent-border);
}
.identification-result-list {
  display: grid;
  gap: 8px;
  max-height: 596px;
  overflow: auto;
  padding-right: 3px;
}
.identification-result {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 7px;
  background: #fff;
}
.identification-result:hover {
  border-color: var(--accent-border);
  background: #fbfdff;
}
.identification-result-image {
  display: grid;
  place-items: center;
  width: 72px;
  height: 56px;
  border-radius: 7px;
  overflow: hidden;
  background: #eff5fd;
  color: var(--blue);
}
.identification-result-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}
.identification-result-image svg { width: 23px; height: 23px; }
.identification-result-copy { min-width: 0; }
.identification-result-copy strong,
.identification-result-copy em,
.identification-result-copy small {
  display: block;
  overflow-wrap: anywhere;
}
.identification-result-copy strong { font-size: 14px; font-weight: 570; }
.identification-result-copy em {
  margin: 1px 0 3px;
  color: var(--muted);
  font-size: 12px;
}
.identification-result-copy small { color: var(--muted); font-size: 11px; }
.identification-match {
  padding: 6px 8px;
  border-radius: 999px;
  color: var(--muted);
  background: #f4f7fb;
  font-size: 11px;
  font-weight: 540;
}
.identification-match.strong { color: var(--blue); background: var(--blue-soft); }
.identification-empty {
  display: grid;
  justify-items: center;
  gap: 10px;
  border: 1px dashed var(--line);
  border-radius: 9px;
  padding: 30px 18px;
  color: var(--muted);
  text-align: center;
}
.identification-empty svg { width: 25px; height: 25px; }
.identification-empty p,
.identification-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.identification-note { margin-top: 16px; }

@media (max-width: 1080px) {
  .topnav { gap: 6px; font-size: 13px; }
  .topnav a { padding-inline: 11px; }
  .identification-workbench { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .identification-page { padding: 24px 0 42px; }
  .identification-heading { margin-bottom: 22px; }
  .identification-heading h1 { font-size: clamp(31px, 9vw, 42px); }
  .identification-lead { font-size: 14px; }
  .identification-builder,
  .identification-results { padding: 14px; border-radius: 12px; }
  .identification-visual { padding: 10px; }
  .identification-step-tabs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .identification-tab { min-height: 66px; }
}
@media (max-width: 520px) {
  .identification-visual-caption span { display: none; }
  .identification-result { grid-template-columns: 58px minmax(0, 1fr); gap: 9px; }
  .identification-result-image { width: 58px; height: 48px; }
  .identification-match { grid-column: 2; justify-self: start; }
  .identification-results-head { display: grid; }
}

/* Zentrale Sektionsdarstellung und mobile Feinarbeit */
.knowledge-depth-visual,
.ai-about-image,
.category-image-mosaic {
  background-position: var(--section-image-x, 50%) var(--section-image-y, 50%);
}
.category-explorer-topics {
  position: relative;
  z-index: 3;
  width: min(68%, 920px);
  margin-top: 70px;
}
.hero::after {
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.83) 25%, rgba(255,255,255,.30) 47%, rgba(255,255,255,0) 66%),
    linear-gradient(0deg, rgba(236,246,255,.38), rgba(255,255,255,0) 46%);
}
.profile-hero-bleed::after,
.audience-hero::after {
  background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.84) 27%, rgba(255,255,255,.28) 48%, rgba(255,255,255,0) 67%);
}
.quick-discovery {
  position: relative;
  overflow: hidden;
  grid-template-columns: 54px max-content minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  border-color: transparent;
  color: #fff;
  background: linear-gradient(115deg, var(--accent-ink), var(--blue) 64%, #47bad7);
}
.quick-discovery::after {
  display: none;
}
.quick-discovery-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: rgba(255,255,255,.15);
  color: #fff;
}
.quick-discovery-mark svg {
  width: 25px;
  height: 25px;
}
.quick-discovery > div,
.quick-chip-row {
  position: relative;
  z-index: 1;
}
.quick-discovery .eyebrow {
  color: rgba(255,255,255,.78);
}
.quick-discovery h2 {
  color: #fff;
  font-size: 20px;
  line-height: 1.28;
  font-weight: 560;
}
.quick-chip-row {
  flex-wrap: nowrap;
  justify-content: flex-end;
  overflow-x: auto;
  scrollbar-width: thin;
}
.quick-chip {
  flex: 0 0 auto;
}
.quick-chip {
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.1);
  color: #fff;
}
.quick-chip b {
  background: rgba(255,255,255,.18);
  color: #fff;
}
.quick-chip:hover {
  border-color: #fff;
  background: #fff;
  color: var(--accent-ink);
}
.quick-chip:hover b {
  background: var(--blue-soft);
  color: var(--accent-ink);
}
.footer-group summary {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 580;
  list-style: none;
}
.footer-group summary::-webkit-details-marker {
  display: none;
}
.footer-group summary svg {
  display: none;
}
.footer-group:not([open]) > div {
  display: block;
}
.editorial-info-grid,
.knowledge-depth-grid,
.ai-principle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.editorial-info-card,
.knowledge-depth-card,
.ai-principle-card {
  display: grid;
  justify-items: start;
  align-content: start;
  min-height: 210px;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 36px rgba(14,45,95,.06);
  text-align: left;
}
.editorial-info-card > span,
.knowledge-depth-card > span,
.ai-principle-card > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--accent-ink);
}
.editorial-info-card svg,
.knowledge-depth-card svg,
.ai-principle-card svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.65;
}
.editorial-info-card strong,
.knowledge-depth-card strong,
.ai-principle-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-ink);
  font-size: 13px;
  line-height: 1.22;
  font-weight: 600;
}
.editorial-info-card strong::after,
.knowledge-depth-card strong::after {
  display: none;
}
.editorial-info-card em,
.knowledge-depth-card em,
.ai-principle-card em {
  color: #334259;
  font-size: 12px;
  line-height: 1.5;
  font-style: normal;
}

@media (max-width: 1120px) {
  .portal-links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --mobile-content-inset: 16px;
  }
  .site-main > :not(.custom-home-section),
  .audience-page .site-main > *,
  .identification-page .site-main > * {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .site-main > .custom-home-section {
    margin-left: 0;
    margin-right: 0;
  }
  .audience-page .site-main > .custom-home-section {
    margin-left: 0;
    margin-right: 0;
  }
  .custom-home-section.has-fangindex-cta {
    margin-top: -8px;
    margin-bottom: 30px;
  }
  .fangindex-cta {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }
  .fangindex-cta-symbol {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }
  .fangindex-cta-symbol svg {
    width: 22px;
    height: 22px;
  }
  .fangindex-cta-copy h2 {
    font-size: 17px;
  }
  .fangindex-cta-copy p:not(.eyebrow) {
    font-size: 12px;
  }
  .fangindex-cta-link {
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 3px;
  }
  .home-search-panel {
    margin-left: 0;
    margin-right: 0;
  }
  .portal-links-section {
    margin: 20px 0 34px;
  }
  .portal-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .portal-link-card {
    min-height: 184px;
  }
  .portal-link-content {
    padding: 0 11px 11px;
  }
  .portal-link-content > i,
  .portal-link-content > svg {
    width: 38px;
    height: 38px;
    margin-bottom: 5px;
    padding: 10px;
  }
  .portal-link-content strong {
    font-size: 15px;
    line-height: 1.18;
  }
  .portal-link-content small {
    font-size: 11px;
  }
  .portal-link-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    min-height: 170px;
  }
  .editorial-section {
    border-radius: 16px;
  }
  .knowledge-depth-section,
  .ai-about-section,
  .category-explorer-section {
    padding: 25px var(--mobile-content-inset) 20px;
  }
  .knowledge-depth-copy,
  .category-explorer-copy {
    width: 100%;
    min-height: 142px;
    padding-right: 0;
  }
  .knowledge-depth-copy h2,
  .category-explorer-copy h2,
  .ai-about-intro h2,
  .species-discovery-head h2 {
    max-width: calc(100% - 140px);
    min-height: 90px;
    margin-bottom: 13px;
    font-size: var(--mobile-section-title-size);
    line-height: 1.13;
  }
  .knowledge-depth-copy p:not(.eyebrow),
  .category-explorer-copy p:not(.eyebrow),
  .ai-about-intro p:not(.eyebrow),
  .species-discovery-head p:not(.eyebrow) {
    max-width: 100%;
    font-size: var(--mobile-text-size);
    line-height: 1.52;
  }
  .knowledge-depth-visual,
  .category-image-mosaic {
    top: 8px;
    right: 0;
    width: min(37vw, 142px);
    height: 136px;
    min-height: 0;
    background-position: var(--section-mobile-image-x, 50%) var(--section-mobile-image-y, 50%);
  }
  .knowledge-depth-topics,
  .editorial-topics,
  .category-explorer-topics {
    width: 100%;
    margin-top: 24px;
  }
  .ai-about-intro {
    position: relative;
    display: block;
  }
  .ai-about-intro h2 {
    max-width: calc(100% - 140px);
  }
  .ai-about-image {
    position: absolute;
    top: -4px;
    right: -3px;
    width: min(37vw, 142px);
    height: 136px;
    min-height: 0;
    border-radius: 58% 0 0 54% / 48% 0 0 52%;
    background-position: var(--section-mobile-image-x, 50%) var(--section-mobile-image-y, 50%);
  }
  .ai-about-image blockquote {
    display: none;
  }
  .editorial-info-grid,
  .knowledge-depth-grid,
  .ai-principle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .editorial-info-card,
  .knowledge-depth-card,
  .ai-principle-card {
    justify-items: start;
    min-height: 0;
    padding: 15px 11px;
    text-align: left;
  }
  .editorial-info-card > span,
  .knowledge-depth-card > span,
  .ai-principle-card > span {
    width: 45px;
    height: 45px;
    margin-bottom: 11px;
  }
  .editorial-info-card svg,
  .knowledge-depth-card svg,
  .ai-principle-card svg {
    width: 23px;
    height: 23px;
  }
  .editorial-info-card strong,
  .knowledge-depth-card strong,
  .ai-principle-card strong {
    margin-bottom: 9px;
    font-size: 11px;
    line-height: 1.28;
  }
  .knowledge-depth-card strong::after {
    display: none;
  }
  .editorial-info-card em,
  .knowledge-depth-card em,
  .ai-principle-card em {
    font-size: 11.5px;
    line-height: 1.42;
  }
  .category-explorer-grid {
    gap: 9px;
  }
  .category-explorer-card {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 2px 8px;
    min-height: 70px;
    padding: 10px 8px;
  }
  .category-explorer-icon {
    width: 34px;
    height: 34px;
  }
  .category-explorer-card svg {
    width: 18px;
    height: 18px;
  }
  .category-explorer-title {
    font-size: 10.5px;
    overflow-wrap: anywhere;
  }
  .category-explorer-card em {
    font-size: 11px;
  }
  .category-explorer-card small {
    font-size: 10px;
  }
  .species-discovery {
    display: flex;
    flex-direction: column;
  }
  .species-discovery-head {
    display: contents;
  }
  .species-discovery-head > div {
    order: 0;
    margin-bottom: 21px;
  }
  .species-discovery-subhead {
    order: 1;
  }
  .species-discovery .item-grid {
    order: 2;
  }
  .species-discovery-head > a {
    order: 3;
    justify-content: center;
    align-self: center;
    margin-top: 18px;
  }
  .quick-discovery {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 16px;
  }
  .quick-discovery-mark {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }
  .quick-chip-row {
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-bottom: 2px;
  }
  .hero,
  .profile-hero-bleed,
  .audience-hero {
    min-height: 0;
    margin-top: 0;
    padding-top: 0;
    background: #fff;
    overflow: visible;
  }
  .hero-bg,
  .profile-hero-bg,
  .audience-hero-bg {
    position: relative;
    inset: auto;
    display: block;
    height: 220px;
    bottom: auto;
    opacity: 1;
    background-position: center;
    border-radius: 0;
    transform: none;
  }
  .hero::after,
  .profile-hero-bleed::after,
  .audience-hero::after {
    display: none;
  }
  .hero-inner,
  .profile-hero-inner,
  .audience-hero-inner {
    width: min(100% - 18px, 1500px);
    margin: -24px auto 18px;
    padding: 20px 15px 34px;
    border-radius: 18px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 -10px 34px rgba(14,45,95,.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
  .ai-badge-page-hero {
    top: 82px;
    right: 18px;
  }
  .hero-copy h1,
  .profile-hero-inner h1,
  .audience-hero-copy h1 {
    font-size: var(--mobile-hero-title-size);
  }
  .mobile-menu-panel {
    border-radius: 16px;
    padding: 10px;
  }
  .mobile-nav {
    gap: 9px;
  }
  .mobile-nav-group {
    display: grid;
    gap: 3px;
    padding: 8px;
    border: 1px solid #edf2f8;
    border-radius: 12px;
    background: #fff;
  }
  .mobile-nav-group strong,
  .mobile-nav-group strong:first-child {
    margin: 0 4px 6px;
    padding-bottom: 7px;
    border-bottom: 1px solid #edf2f8;
    letter-spacing: .08em;
  }
  .mobile-nav-group a,
  .mobile-nav-group .mobile-cache-clear-form button {
    position: relative;
    padding-left: 15px;
  }
  .mobile-nav-group a.active::before {
    content: "";
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 3px;
    width: 3px;
    border-radius: 99px;
    background: var(--blue);
  }
  .site-footer {
    padding: 22px 0 15px;
  }
  .site-footer-inner {
    width: min(100% - 18px, 1500px);
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .site-footer-inner > div:first-child {
    padding-bottom: 10px;
  }
  .footer-group {
    border-top: 1px solid var(--line);
  }
  .footer-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 13px 0;
    cursor: pointer;
  }
  .footer-group summary svg {
    display: block;
    width: 16px;
    height: 16px;
    transition: transform .16s ease;
  }
  .footer-group[open] summary svg {
    transform: rotate(180deg);
  }
  .footer-group:not([open]) > div {
    display: none;
  }
  .footer-group > div {
    padding: 0 0 12px;
  }
}

@media (max-width: 520px) {
  :root {
    --mobile-content-inset: 12px;
  }
  .knowledge-depth-copy h2,
  .category-explorer-copy h2,
  .ai-about-intro h2 {
    max-width: calc(100% - 124px);
    min-height: 82px;
  }
  .knowledge-depth-visual,
  .category-image-mosaic,
  .ai-about-image {
    width: min(35vw, 126px);
    height: 122px;
  }
  .portal-link-card {
    min-height: 164px;
  }
}

@media (max-width: 820px) {
  .audience-search-wrap,
  .home-search-panel {
    display: none !important;
  }
}

@media (max-width: 820px) {
  .category-subnav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .category-subnav::-webkit-scrollbar {
    display: none;
  }
  .category-subnav a {
    flex: 0 0 auto;
  }
  .profile-chips {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 0 16px;
  }
  .profile-chip {
    min-height: 0;
    padding: 6px 9px 6px 7px;
  }
  .profile-chip > span {
    width: 22px;
    height: 22px;
    color: var(--chip-color);
  }
  .profile-chip strong {
    font-size: 11.5px;
  }
  .profile-tabs {
    margin-bottom: 18px;
    padding-bottom: 7px;
  }
  .hero {
    min-height: calc(100svh - 64px);
    display: flex;
    flex-direction: column;
  }
  .hero-bg {
    height: clamp(220px, 42svh, 340px);
    flex: 0 0 auto;
  }
  .hero-inner {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
  }
  .hero-copy h1 {
    font-size: clamp(16px, 4.8vw, 20px);
    line-height: 1.05;
    white-space: nowrap;
    overflow-wrap: normal;
  }
}

.profile-chip > span {
  color: var(--chip-color);
}
.profile-chip svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}
