.ampf {
  --ampf-navy: #0E2340;
  --ampf-navy-soft: #1B3559;
  --ampf-ink: #101F33;
  --ampf-body: #4B5768;
  --ampf-amber: #E0A153;
  --ampf-blue: #5B93CC;
  --ampf-surface: #FFFFFF;
  --ampf-bg: #F4F7FB;
  --ampf-line: #E2E8F1;
  --ampf-radius: 14px;
  --ampf-shadow: 0 1px 2px rgba(16, 31, 51, .04), 0 12px 32px rgba(16, 31, 51, .06);
  background: var(--ampf-bg);
  padding: clamp(48px, 6vw, 96px) clamp(16px, 4vw, 40px);
  font-family: inherit;
  color: var(--ampf-body);
  -webkit-font-smoothing: antialiased;
}

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

.ampf-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.ampf-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ampf-amber);
  margin: 0 0 14px;
}

.ampf-title {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--ampf-ink);
  margin: 0 0 12px;
  letter-spacing: -.02em;
}

.ampf-lede {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
  max-width: 62ch;
  margin: 0 auto 32px;
}

.ampf-head {
  text-align: center;
}

.ampf-search {
  position: relative;
  max-width: 560px;
  margin: 0 auto 20px;
}

.ampf-search input {
  width: 100% !important;
  padding: 16px 48px 16px 50px !important;
  border: 1px solid var(--ampf-line) !important;
  border-radius: 999px !important;
  background: var(--ampf-surface) !important;
  font-size: 16px !important;
  font-family: inherit !important;
  color: var(--ampf-ink) !important;
  box-shadow: var(--ampf-shadow) !important;
  transition: border-color .18s, box-shadow .18s !important;
  height: auto !important;
  min-height: 0 !important;
}

.ampf-search input::placeholder {
  color: #93A0B2;
}

.ampf-search input:focus {
  outline: none !important;
  border-color: var(--ampf-blue) !important;
  box-shadow: 0 0 0 4px rgba(91, 147, 204, .18) !important;
}

.ampf-search svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  stroke: #93A0B2;
  fill: none;
  stroke-width: 2;
}

.ampf-clear {
  position: absolute !important;
  right: 14px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  border: 0 !important;
  background: transparent !important;
  cursor: pointer !important;
  font-size: 20px !important;
  line-height: 1 !important;
  color: #93A0B2 !important;
  padding: 6px !important;
  display: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  height: auto !important;
  width: auto !important;
}

.ampf-clear.is-on {
  display: none !important;
}

.ampf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}

.ampf-chip {
  border: 1px solid var(--ampf-line);
  background: var(--ampf-surface);
  color: var(--ampf-body);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .18s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ampf-chip:hover {
  border-color: var(--ampf-blue);
  color: var(--ampf-navy);
}

.ampf-chip[aria-pressed="true"] {
  background: var(--ampf-navy);
  border-color: var(--ampf-navy);
  color: #fff;
}

.ampf-chip span {
  font-size: 12px;
  font-weight: 700;
  opacity: .55;
}

.ampf-chip:focus-visible {
  outline: 3px solid rgba(224, 161, 83, .55);
  outline-offset: 2px;
}

.ampf-count {
  text-align: center;
  font-size: 14px;
  color: #8792A3;
  margin: 0 0 24px;
  min-height: 20px;
}

.ampf-list {
  background: var(--ampf-surface);
  border: 1px solid var(--ampf-line);
  border-radius: var(--ampf-radius);
  box-shadow: var(--ampf-shadow);
  overflow: hidden;
}

.ampf-item {
  border-bottom: 1px solid var(--ampf-line);
  position: relative;
}

.ampf-item:last-child {
  border-bottom: 0;
}

.ampf-item[hidden] {
  display: none;
}

.ampf-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--ampf-amber);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .22s ease;
}

.ampf-item[open]::before {
  transform: scaleY(1);
}

.ampf-q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px clamp(18px, 3vw, 28px);
  font-size: clamp(16px, 1.15vw, 17px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--ampf-ink);
  transition: background .18s;
}

.ampf-q::-webkit-details-marker {
  display: none;
}

.ampf-q:hover {
  background: #FAFCFE;
}

.ampf-item[open] .ampf-q {
  color: var(--ampf-navy);
}

.ampf-q:focus-visible {
  outline: 3px solid rgba(224, 161, 83, .55);
  outline-offset: -3px;
}

.ampf-ico {
  margin-left: auto;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #EEF3F9;
  position: relative;
  transition: background .2s, transform .25s;
}

.ampf-ico::before, .ampf-ico::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--ampf-navy);
  transform: translate(-50%, -50%);
  transition: opacity .2s, background .2s;
}

.ampf-ico::before {
  width: 11px;
  height: 2px;
}

.ampf-ico::after {
  width: 2px;
  height: 11px;
}

.ampf-item[open] .ampf-ico {
  background: var(--ampf-amber);
  transform: rotate(90deg);
}

.ampf-item[open] .ampf-ico::before, .ampf-item[open] .ampf-ico::after {
  background: #fff;
}

.ampf-item[open] .ampf-ico::after {
  opacity: 0;
}

.ampf-a {
  padding: 0 clamp(18px, 3vw, 28px) 26px calc(clamp(18px, 3vw, 28px));
  font-size: 16px;
  line-height: 1.75;
  max-width: 78ch;
}

.ampf-a p {
  margin: 0 0 12px;
}

.ampf-a p:last-child {
  margin-bottom: 0;
}

.ampf-a ul {
  margin: 0 0 12px;
  padding-left: 20px;
}

.ampf-a li {
  margin-bottom: 8px;
}

.ampf-a strong {
  color: var(--ampf-ink);
}

.ampf-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ampf-blue);
  background: #EDF4FB;
  border-radius: 6px;
  padding: 4px 9px;
  margin-bottom: 12px;
}

.ampf-more {
  display: block;
  margin: 22px auto 0;
  background: transparent;
  border: 1px solid var(--ampf-line);
  color: var(--ampf-navy);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .18s;
}

.ampf-more:hover {
  background: var(--ampf-navy);
  border-color: var(--ampf-navy);
  color: #fff;
}

.ampf-empty {
  display: none;
  text-align: center;
  padding: 48px 24px;
  font-size: 16px;
  color: #8792A3;
}

.ampf-empty.is-on {
  display: block;
}

.ampf-empty b {
  display: block;
  color: var(--ampf-ink);
  font-size: 18px;
  margin-bottom: 6px;
}

.ampf-cta {
  margin-top: 28px;
  background: var(--ampf-navy);
  border-radius: var(--ampf-radius);
  padding: clamp(26px, 3.5vw, 38px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  justify-content: space-between;
}

.ampf-cta h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: clamp(19px, 1.6vw, 22px);
  font-weight: 700;
  line-height: 1.3;
}

.ampf-cta p {
  margin: 0;
  color: #B9C7DA;
  font-size: 15px;
  line-height: 1.6;
}

.ampf-btn {
  display: inline-block;
  background: var(--ampf-amber);
  color: #12243C;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform .16s, box-shadow .16s;
}

.ampf-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(224, 161, 83, .35);
  color: #12243C;
}

@media (max-width: 640px) {
  .ampf-chips {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
    margin-left: -4px;
  }
  .ampf-chips::-webkit-scrollbar {
    display: none;
  }
  .ampf-chip {
    flex: 0 0 auto;
  }
  .ampf-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ampf * {
    transition: none !important;
  }
}
