﻿:root {
      color-scheme: var(--ghv-color-scheme);
      --bg: var(--ghv-landing-page-bg);
      --surface: var(--ghv-landing-surface);
      --surface-soft: var(--ghv-landing-surface-soft);
      --border: color-mix(in srgb, var(--ghv-landing-border) 88%, transparent);
      --text: var(--ghv-landing-text);
      --muted: var(--ghv-landing-muted);
      --primary: var(--ghv-landing-primary);
      --secondary: var(--ghv-landing-secondary);
      --shadow: var(--ghv-landing-shadow);
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body.faq-page {
      margin: 0;
      min-height: 100vh;
      font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
      color: var(--text);
      background: var(--ghv-landing-page-bg);
    }
    body.faq-page::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        repeating-linear-gradient(90deg, rgba(255,255,255,0.018) 0, rgba(255,255,255,0.018) 1px, transparent 1px, transparent 84px),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.018) 0, rgba(255,255,255,0.018) 1px, transparent 1px, transparent 84px);
      opacity: 0.22;
    }
    a,
    a:visited { color: inherit; text-decoration: none; }
    button,
    input {
      font: inherit;
    }
    .page {
      position: relative;
      z-index: 1;
      width: min(1520px, calc(100% - 18px));
      margin: 0 auto;
      padding: 16px 0 42px;
    }
    .topbar,
    .hero,
    .sidebar-card,
    .results-bar,
    .faq-section,
    .cta {
      border: 1px solid var(--border);
      background: var(--surface);
      box-shadow: var(--shadow);
    }
    .topbar {
      padding: 14px 18px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 18px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
      flex: 1 1 320px;
    }
    .brand-mark {
      width: 60px;
      height: 60px;
      padding: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .brand-mark img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
      filter: drop-shadow(0 10px 18px rgba(1, 10, 18, 0.22));
    }
    .brand-copy {
      display: grid;
      gap: 2px;
      min-width: 0;
    }
    .brand-copy strong {
      font-family: 'Space Grotesk', system-ui, sans-serif;
      font-size: 1rem;
    }
    .brand-copy span {
      color: var(--muted);
      font-size: 0.8rem;
      overflow-wrap: anywhere;
    }
    .topnav {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      min-width: 0;
      flex: 1 1 360px;
      justify-content: flex-end;
    }
    .topnav a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 10px 14px;
      border-radius: 999px;
      color: var(--muted);
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.03);
      transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
    }
    .topnav a:hover,
    .topnav a.active {
      background: rgba(255,255,255,0.05);
      color: var(--text);
      border-color: rgba(87,239,217,0.16);
      transform: translateY(-1px);
    }
    .hero {
      position: relative;
      overflow: hidden;
      padding: clamp(24px, 2.8vw, 34px);
      border-radius: 34px;
      margin-bottom: 18px;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
      gap: 20px;
      background:
        radial-gradient(circle at top left, rgba(87,239,217,0.18), transparent 34%),
        radial-gradient(circle at 86% 12%, rgba(102,168,255,0.18), transparent 28%),
        linear-gradient(180deg, rgba(10,22,35,0.96), rgba(8,16,27,0.92));
    }
    .hero::after {
      content: '';
      position: absolute;
      right: -80px;
      bottom: -100px;
      width: 320px;
      height: 320px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(87,239,217,0.14), transparent 70%);
      filter: blur(18px);
      pointer-events: none;
      animation: auraShift 10s ease-in-out infinite;
    }
    .hero-copy,
    .hero-panel {
      position: relative;
      z-index: 1;
      min-width: 0;
    }
    .hero-copy {
      display: grid;
      gap: 18px;
      align-content: start;
    }
    .kicker,
    .section-kicker,
    .topic-count,
    .result-pill,
    .faq-count {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: fit-content;
      border-radius: 999px;
      font-size: 0.76rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .kicker,
    .section-kicker {
      gap: 8px;
      padding: 8px 12px;
      background: rgba(87,239,217,0.12);
      color: #aefcf2;
    }
    .hero h1 {
      margin: 0;
      font-family: 'Space Grotesk', system-ui, sans-serif;
      font-size: clamp(2.45rem, 4.2vw, 4.4rem);
      line-height: 0.94;
      letter-spacing: -0.06em;
      max-width: 12ch;
      text-wrap: balance;
      overflow-wrap: anywhere;
    }
    .hero p,
    .faq-section p,
    .faq-answer p,
    .faq-answer li,
    .sidebar-card p,
    .cta p {
      color: var(--muted);
      line-height: 1.76;
    }
    .hero-copy > p {
      margin: 0;
      max-width: 68ch;
      text-wrap: pretty;
      overflow-wrap: anywhere;
    }
    .hero-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .hero-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 46px;
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.04);
      color: var(--text);
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
    }
    .hero-link:hover {
      transform: translateY(-1px);
      border-color: rgba(87,239,217,0.28);
      background: rgba(255,255,255,0.06);
    }
    .hero-link svg,
    .topic-button svg,
    .faq-icon svg,
    .inline-icon svg,
    .search-icon svg,
    .utility-link svg,
    .result-pill svg {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }
    .hero-panel {
      border-radius: 28px;
      border: 1px solid rgba(255,255,255,0.08);
      background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
      padding: 20px;
      display: grid;
      gap: 16px;
      align-content: start;
      overflow: hidden;
    }
    .hero-panel::before {
      content: '';
      position: absolute;
      inset: auto -40px -60px auto;
      width: 180px;
      height: 180px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(102,168,255,0.18), transparent 72%);
      filter: blur(8px);
      animation: pulseHalo 8s ease-in-out infinite;
      pointer-events: none;
    }
    .hero-panel-head {
      display: grid;
      gap: 8px;
    }
    .hero-panel-head strong {
      font-family: 'Space Grotesk', system-ui, sans-serif;
      font-size: 1.36rem;
      letter-spacing: -0.04em;
      line-height: 1.04;
      max-width: 18ch;
      text-wrap: balance;
    }
    .hero-panel-head p {
      margin: 0;
      max-width: 48ch;
    }
    .search-shell {
      position: relative;
      display: flex;
      align-items: center;
    }
    .search-icon {
      position: absolute;
      left: 14px;
      color: rgba(190,216,255,0.72);
      pointer-events: none;
    }
    .faq-search {
      width: 100%;
      min-height: 52px;
      padding: 14px 18px 14px 46px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(5, 15, 24, 0.58);
      color: var(--text);
      outline: none;
      transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }
    .faq-search::placeholder {
      color: rgba(190,216,255,0.54);
    }
    .faq-search:focus {
      border-color: rgba(87,239,217,0.34);
      background: rgba(7, 18, 28, 0.74);
      box-shadow: 0 0 0 4px rgba(87,239,217,0.08);
    }
    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }
    .hero-metric {
      border-radius: 20px;
      padding: 16px 14px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.03);
      display: grid;
      gap: 8px;
      align-content: start;
    }
    .hero-metric strong {
      font-family: 'Space Grotesk', system-ui, sans-serif;
      font-size: 1.56rem;
      line-height: 0.98;
      letter-spacing: -0.04em;
    }
    .hero-metric span {
      font-size: 0.76rem;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #bed8ff;
    }
    .hero-notes {
      display: grid;
      gap: 10px;
    }
    .hero-note {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: 10px;
      align-items: start;
      padding: 12px 14px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.06);
      background: rgba(255,255,255,0.03);
    }
    .inline-icon {
      width: 36px;
      height: 36px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(87,239,217,0.14);
      color: #7ef4e2;
      border: 1px solid rgba(87,239,217,0.2);
      flex-shrink: 0;
    }
    .hero-note strong {
      display: block;
      margin-bottom: 2px;
      font-size: 0.96rem;
      letter-spacing: -0.02em;
    }
    .hero-note span {
      color: var(--muted);
      font-size: 0.88rem;
      line-height: 1.6;
    }
    .faq-layout {
      display: grid;
      grid-template-columns: 300px minmax(0, 1fr);
      gap: 18px;
      align-items: start;
      margin-bottom: 22px;
    }
    .faq-sidebar {
      position: sticky;
      top: 16px;
      display: grid;
      gap: 16px;
    }
    .sidebar-card {
      border-radius: 28px;
      padding: 20px;
      display: grid;
      gap: 14px;
      background:
        radial-gradient(circle at top left, rgba(87,239,217,0.12), transparent 38%),
        linear-gradient(180deg, rgba(10,22,35,0.96), rgba(8,16,27,0.92));
    }
    .sidebar-head {
      display: grid;
      gap: 6px;
    }
    .sidebar-head h2,
    .cta h2 {
      margin: 0;
      font-family: 'Space Grotesk', system-ui, sans-serif;
      letter-spacing: -0.04em;
      line-height: 1.04;
      text-wrap: balance;
      overflow-wrap: anywhere;
    }
    .sidebar-head h2 {
      font-size: 1.24rem;
    }
    .sidebar-head p {
      margin: 0;
      font-size: 0.92rem;
      text-wrap: pretty;
    }
    .topic-list {
      display: grid;
      gap: 10px;
    }
    .topic-button {
      width: 100%;
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      gap: 12px;
      align-items: center;
      padding: 12px 14px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.03);
      color: var(--text);
      text-align: left;
      cursor: pointer;
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
    }
    .topic-button:hover {
      transform: translateY(-1px);
      border-color: rgba(var(--topic-accent-rgb), 0.3);
      background: rgba(255,255,255,0.05);
      box-shadow: 0 14px 24px rgba(0,0,0,0.14);
    }
    .topic-button.active {
      border-color: rgba(var(--topic-accent-rgb), 0.34);
      background: linear-gradient(135deg, rgba(var(--topic-accent-rgb), 0.14), rgba(255,255,255,0.04));
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 16px 28px rgba(0,0,0,0.16);
    }
    .topic-button .inline-icon {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      color: var(--topic-accent);
      background: linear-gradient(135deg, rgba(var(--topic-accent-rgb), 0.2), rgba(var(--topic-accent-rgb), 0.08));
      border-color: rgba(var(--topic-accent-rgb), 0.26);
    }
    .topic-copy {
      display: grid;
      gap: 2px;
      min-width: 0;
    }
    .topic-copy strong {
      font-size: 0.95rem;
      letter-spacing: -0.02em;
      overflow-wrap: anywhere;
    }
    .topic-copy span {
      font-size: 0.8rem;
      color: var(--muted);
      overflow-wrap: anywhere;
    }
    .topic-count {
      padding: 7px 10px;
      color: var(--topic-accent);
      background: rgba(var(--topic-accent-rgb), 0.12);
      border: 1px solid rgba(var(--topic-accent-rgb), 0.18);
    }
    .utility-list {
      display: grid;
      gap: 10px;
    }
    .utility-link {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: 10px;
      align-items: start;
      padding: 12px 14px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.03);
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
    }
    .utility-link:hover {
      transform: translateY(-1px);
      border-color: rgba(102,168,255,0.26);
      background: rgba(255,255,255,0.05);
    }
    .utility-link .inline-icon {
      width: 40px;
      height: 40px;
      color: #9bd3ff;
      background: rgba(102,168,255,0.14);
      border-color: rgba(102,168,255,0.2);
    }
    .utility-link strong {
      display: block;
      margin-bottom: 2px;
      font-size: 0.94rem;
      letter-spacing: -0.02em;
    }
    .utility-link span {
      color: var(--muted);
      font-size: 0.84rem;
      line-height: 1.58;
    }
    .faq-main {
      display: grid;
      gap: 16px;
      min-width: 0;
    }
    .results-bar {
      border-radius: 24px;
      padding: 16px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
      background:
        radial-gradient(circle at top left, rgba(87,239,217,0.1), transparent 38%),
        linear-gradient(180deg, rgba(10,22,35,0.95), rgba(8,16,27,0.92));
    }
    .results-head {
      display: grid;
      gap: 4px;
    }
    .results-head strong {
      font-size: 1rem;
      letter-spacing: -0.02em;
    }
    .results-head span {
      color: var(--muted);
      font-size: 0.88rem;
    }
    .results-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
    }
    .result-pill {
      gap: 8px;
      padding: 10px 12px;
      color: #9bd3ff;
      background: rgba(102,168,255,0.12);
      border: 1px solid rgba(102,168,255,0.18);
    }
    .clear-filter {
      min-height: 42px;
      padding: 10px 14px;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 14px;
      background: rgba(255,255,255,0.04);
      color: var(--text);
      cursor: pointer;
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
    }
    .clear-filter:hover {
      transform: translateY(-1px);
      border-color: rgba(87,239,217,0.26);
      background: rgba(255,255,255,0.06);
    }
    .faq-sections {
      display: grid;
      gap: 18px;
    }
    .faq-section {
      position: relative;
      overflow: hidden;
      border-radius: 30px;
      padding: 22px;
      display: grid;
      gap: 18px;
      background: linear-gradient(180deg, rgba(10,22,35,0.96), rgba(8,16,27,0.92));
    }
    .faq-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 100% 0%, rgba(var(--section-accent-rgb), 0.16), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,0.05), transparent 28%);
      pointer-events: none;
    }
    .faq-section.reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 420ms ease, transform 420ms ease;
    }
    .faq-section.reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
    .faq-section > * {
      position: relative;
      z-index: 1;
    }
    .faq-section-head {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      gap: 14px;
      align-items: start;
    }
    .faq-icon {
      width: 52px;
      height: 52px;
      border-radius: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--section-accent);
      background: linear-gradient(135deg, rgba(var(--section-accent-rgb), 0.22), rgba(var(--section-accent-rgb), 0.08));
      border: 1px solid rgba(var(--section-accent-rgb), 0.26);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 12px 20px rgba(0,0,0,0.14);
      flex-shrink: 0;
    }
    .faq-copy {
      display: grid;
      gap: 8px;
      min-width: 0;
    }
    .faq-copy h2 {
      margin: 0;
      font-family: 'Space Grotesk', system-ui, sans-serif;
      font-size: clamp(1.42rem, 2vw, 1.84rem);
      letter-spacing: -0.04em;
      line-height: 1.04;
      text-wrap: balance;
      overflow-wrap: anywhere;
    }
    .faq-copy p {
      margin: 0;
      text-wrap: pretty;
      overflow-wrap: anywhere;
    }
    .faq-count {
      padding: 8px 12px;
      color: var(--section-accent);
      background: rgba(var(--section-accent-rgb), 0.12);
      border: 1px solid rgba(var(--section-accent-rgb), 0.18);
      align-self: start;
    }
    .faq-list {
      display: grid;
      gap: 12px;
    }
    .faq-item {
      border-radius: 22px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.03);
      overflow: hidden;
      transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
    }
    .faq-item[open] {
      border-color: rgba(var(--section-accent-rgb), 0.28);
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
      box-shadow: 0 16px 28px rgba(0,0,0,0.14);
    }
    .faq-item summary {
      list-style: none;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 14px;
      align-items: center;
      cursor: pointer;
      padding: 16px 18px;
    }
    .faq-item summary::-webkit-details-marker {
      display: none;
    }
    .faq-question-copy {
      display: grid;
      gap: 4px;
      min-width: 0;
    }
    .faq-question-copy strong {
      font-size: 1rem;
      letter-spacing: -0.02em;
      line-height: 1.28;
      overflow-wrap: anywhere;
    }
    .faq-question-copy span {
      font-size: 0.84rem;
      color: var(--muted);
      overflow-wrap: anywhere;
    }
    .faq-toggle {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(var(--section-accent-rgb), 0.12);
      color: var(--section-accent);
      border: 1px solid rgba(var(--section-accent-rgb), 0.16);
      transition: transform 180ms ease, background 180ms ease;
      flex-shrink: 0;
    }
    .faq-toggle svg {
      width: 16px;
      height: 16px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .faq-item[open] .faq-toggle {
      transform: rotate(45deg);
      background: rgba(var(--section-accent-rgb), 0.18);
    }
    .faq-answer {
      padding: 0 18px 18px;
      display: grid;
      gap: 12px;
    }
    .faq-answer p {
      margin: 0;
      text-wrap: pretty;
      overflow-wrap: anywhere;
    }
    .faq-answer ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 8px;
    }
    .faq-answer li {
      position: relative;
      padding-left: 18px;
      text-wrap: pretty;
      overflow-wrap: anywhere;
    }
    .faq-answer li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.78em;
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--section-accent);
      box-shadow: 0 0 0 4px rgba(var(--section-accent-rgb), 0.12);
      transform: translateY(-50%);
    }
    .empty-state {
      border-radius: 28px;
      padding: 26px;
      border: 1px dashed rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.03);
      display: none;
      gap: 10px;
      justify-items: start;
    }
    .empty-state.visible {
      display: grid;
    }
    .empty-state strong {
      font-family: 'Space Grotesk', system-ui, sans-serif;
      font-size: 1.28rem;
      letter-spacing: -0.04em;
    }
    .empty-state p {
      margin: 0;
      color: var(--muted);
      text-wrap: pretty;
      overflow-wrap: anywhere;
    }
    .cta {
      border-radius: 34px;
      padding: clamp(24px, 3vw, 32px);
      display: grid;
      gap: 14px;
      background:
        radial-gradient(circle at top left, rgba(87,239,217,0.18), transparent 36%),
        radial-gradient(circle at 90% 18%, rgba(102,168,255,0.12), transparent 28%),
        linear-gradient(180deg, rgba(10,22,35,0.96), rgba(8,16,27,0.92));
    }
    .cta h2 {
      font-size: clamp(1.9rem, 2.8vw, 2.7rem);
      max-width: 18ch;
    }
    .cta p {
      margin: 0;
      max-width: 78ch;
      text-wrap: pretty;
      overflow-wrap: anywhere;
    }
    .cta-actions {
      display: flex;
      justify-content: flex-start;
      gap: 12px;
      flex-wrap: wrap;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 13px 18px;
      border-radius: 16px;
      font-weight: 700;
    }
    .btn.primary {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #041018;
    }
    .btn.secondary {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
    }
    @keyframes auraShift {
      0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.9; }
      50% { transform: translate3d(-14px, -18px, 0) scale(1.08); opacity: 1; }
    }
    @keyframes pulseHalo {
      0%, 100% { transform: scale(1); opacity: 0.72; }
      50% { transform: scale(1.12); opacity: 1; }
    }
    @media (max-width: 1160px) {
      .hero {
        grid-template-columns: 1fr;
      }
      .faq-layout {
        grid-template-columns: 1fr;
      }
      .faq-sidebar {
        position: static;
      }
    }
    @media (max-width: 860px) {
      .hero-metrics {
        grid-template-columns: 1fr;
      }
      .faq-section-head {
        grid-template-columns: auto minmax(0, 1fr);
      }
      .faq-count {
        grid-column: 2;
      }
    }
    @media (max-width: 760px) {
      .page {
        width: min(100% - 18px, 100%);
        padding-top: 14px;
      }
      .topbar,
      .cta-actions {
        flex-direction: column;
      }
      .topbar {
        align-items: stretch;
        padding: 16px;
        border-radius: 28px;
      }
      .brand {
        width: 100%;
        flex: 1 1 100%;
        align-items: flex-start;
      }
      .brand-mark {
        width: 52px;
        height: 52px;
      }
      .brand-copy {
        width: 100%;
        flex: 1 1 auto;
      }
      .brand-copy strong {
        font-size: 0.96rem;
      }
      .brand-copy span {
        font-size: 0.76rem;
        line-height: 1.5;
      }
      .topnav {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
      }
      .topnav a {
        width: 100%;
        min-width: 0;
        min-height: 42px;
        padding: 10px 12px;
        text-align: center;
        white-space: normal;
        overflow-wrap: anywhere;
      }
      .hero,
      .sidebar-card,
      .results-bar,
      .faq-section,
      .cta {
        border-radius: 24px;
      }
      .hero {
        padding: 26px 20px;
      }
      .hero h1,
      .hero p,
      .faq-copy h2,
      .faq-question-copy strong,
      .cta h2,
      .cta p {
        overflow-wrap: anywhere;
      }
      .hero-links,
      .results-actions {
        width: 100%;
      }
      .hero-link,
      .clear-filter,
      .btn {
        width: 100%;
      }
      .results-actions {
        flex-direction: column;
        align-items: stretch;
      }
      .faq-item summary {
        padding: 15px 16px;
      }
      .faq-answer {
        padding: 0 16px 16px;
      }
    }
    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }
      *,
      *::before,
      *::after {
        animation: none !important;
        transition: none !important;
      }
    }
