﻿body {
  font-family: "Lato", Arial, sans-serif;
  background: #003c72;
  color: #1f2933;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

.fs-topbar {
  background: #ffffff;
  border-bottom: 1px solid #e4e7ec;
  padding: 14px 20px;
}
.fs-topbar .fs-topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.fs-topbar .fs-logo {
  display: inline-flex;
  align-items: center;
}
.fs-topbar .fs-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.fs-menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.fs-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  background: #005daa;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.fs-menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.fs-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.fs-menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.fs-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  min-width: 200px;
  background: #ffffff;
  border: 1px solid #e4e7ec;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 10px;
  z-index: 1500;
}
.fs-menu.open {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fs-menu .fs-menu-name {
  padding: 8px 12px;
  color: #1f2933;
  font-weight: 700;
}
.fs-menu .fs-menu-link {
  padding: 8px 12px;
  color: #005daa;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}
.fs-menu .fs-menu-link:hover {
  background: #eaf1fa;
}

.fs-hero {
  background: #003c72;
  color: #ffffff;
  text-align: center;
  padding: 52px 20px 96px;
}

.fs-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.fs-hero-title {
  font-weight: 900;
  font-size: 1.9rem;
  line-height: 1.2;
  margin: 0 0 14px;
}
.fs-hero-title sup {
  font-size: 0.6em;
  top: -0.5em;
}

.fs-hero-subtitle {
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 24px;
}

.fs-search {
  position: relative;
  max-width: 520px;
  margin: 0 auto 18px;
}

.fs-search-pill {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 999px;
  padding: 6px 6px 6px 24px;
}

.fs-search-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: "Lato", Arial, sans-serif;
  font-size: 1.05rem;
  color: #1f2933;
  padding: 12px 8px;
}
.fs-search-input::placeholder {
  color: #9aa0a6;
}

.fs-search-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background-color: #49a942;
  color: #ffffff;
  font-family: "Lato", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 32px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}
.fs-search-btn:hover:not(:disabled) {
  background-color: #3d8f37;
}
.fs-search-btn:disabled {
  background-color: #a9d4a5;
  cursor: not-allowed;
}

.fs-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #e4e7ec;
  border-radius: 8px;
  max-height: 320px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: left;
}
.fs-suggestions .fs-suggestion-item {
  padding: 12px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.15s ease;
}
.fs-suggestions .fs-suggestion-item:last-child {
  border-bottom: none;
}
.fs-suggestions .fs-suggestion-item:hover, .fs-suggestions .fs-suggestion-item.selected {
  background: #f5f8fc;
}
.fs-suggestions .fs-suggestion-item .fs-suggestion-ticker {
  font-weight: 700;
  color: #005daa;
  margin-right: 16px;
}
.fs-suggestions .fs-suggestion-item .fs-suggestion-name {
  color: #555555;
  font-size: 0.9rem;
  flex: 1;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fs-access {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
}
.fs-access .fs-access-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c0e6c3;
  flex: 0 0 auto;
}
.fs-access .fs-access-dot.pending {
  background: #f4ce2c;
}

.fs-join {
  margin-top: 10px;
  font-weight: 700;
  font-size: 0.95rem;
}
.fs-join .fs-join-arrow {
  margin-right: 8px;
}
.fs-join .fs-join-link {
  color: #ffffff;
  text-decoration: underline;
}
.fs-join .fs-join-link:hover {
  color: #c0e6c3;
}

.fs-body {
  position: relative;
  z-index: 1;
  width: calc(100% - 40px);
  max-width: 1040px;
  margin: -56px auto 48px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 36px 40px 48px;
}

.fs-info-banner {
  background: #e7f3ff;
  border: 1px solid #b3d9ff;
  color: #004085;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.fs-alert {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
}

.fs-result-card {
  border: 1px solid #e4e7ec;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 28px;
}

.fs-result-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
}
.fs-result-head .fs-company {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  color: #1f2933;
}
.fs-result-head .fs-ticker-tag {
  color: #555555;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}

.fs-tabs {
  display: none;
  margin: 8px 0 24px;
  border: 1px solid #e4e7ec;
  border-radius: 8px;
  overflow: hidden;
}
.fs-tabs .fs-tab {
  flex: 1;
  padding: 12px;
  background: #ffffff;
  border: none;
  font-family: "Lato", Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #555555;
  cursor: pointer;
}
.fs-tabs .fs-tab.active {
  color: #005daa;
  background: #eaf1fa;
  box-shadow: inset 0 0 0 1px rgba(0, 93, 170, 0.4);
}

.fs-rings {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 8px 0 4px;
}

.fs-ring-col {
  flex: 1;
  max-width: 360px;
}

.fs-ring-divider {
  width: 1px;
  align-self: stretch;
  background: #e4e7ec;
}

.fs-score-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.fs-ring {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.fs-ring.fs-ring-fit {
  background: conic-gradient(var(--ring-color, #49a942) 0 var(--pct, 0%), #d9d9d9 var(--pct, 0%) 100%);
}
.fs-ring.fs-ring-opportunity {
  background: conic-gradient(var(--ring-color, #f4ce2c) 0 var(--pct, 0%), #d9d9d9 var(--pct, 0%) 100%);
}

.fs-ring-inner {
  width: 168px;
  height: 168px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fs-ring-number {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.fs-ring-fit .fs-ring-number {
  color: #49a942;
}

.fs-ring-opportunity .fs-ring-number {
  color: #f4ce2c;
}

.fs-ring-na .fs-ring-number {
  color: #777777;
}

.fs-score-headline {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f2933;
}

.fs-score-band {
  font-size: 0.95rem;
  color: #555555;
  margin-top: 2px;
}

.fs-score-desc {
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.5;
  max-width: 300px;
  margin: 14px auto 0;
}

.fs-result-foot {
  text-align: center;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #e4e7ec;
}
.fs-result-foot .fs-full-details-link {
  color: #555555;
  text-decoration: underline;
  font-size: 0.9rem;
}
.fs-result-foot .fs-full-details-link:hover {
  color: #005daa;
}

.fs-placeholder-note {
  margin-top: 18px;
  text-align: center;
  padding: 14px;
  background: #e7f3ff;
  border: 1px solid #b3d9ff;
  border-radius: 8px;
  color: #004085;
}

.fs-report-type {
  text-align: center;
  margin-top: 16px;
}
.fs-report-type .fs-report-type-limited,
.fs-report-type .fs-report-type-full {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
}
.fs-report-type .fs-report-type-limited {
  background: #fff3cd;
  border: 1px solid #ffc107;
  color: #856404;
}
.fs-report-type .fs-report-type-full {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.fs-no-score {
  padding: 18px;
  background: #f3f3f3;
  border-left: 5px solid #999;
  border-radius: 8px;
}
.fs-no-score h3 {
  margin-top: 0;
}

.fs-fundamentals-message {
  margin-bottom: 28px;
  padding: 20px 24px;
  background: #fff8e6;
  border: 1px solid #f4ce2c;
  border-radius: 16px;
  color: #7a5c00;
  text-align: center;
  line-height: 1.5;
}

.fs-report-block {
  margin-bottom: 28px;
}

.fs-report-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2933;
  margin: 0 0 16px;
}

.fs-acc-row {
  border: 1px solid #e4e7ec;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.fs-acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: #ffffff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Lato", Arial, sans-serif;
  color: #005daa;
}

.fs-acc-titles {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fs-acc-eyebrow {
  font-size: 0.72rem;
  color: #777777;
  font-weight: 600;
}

.fs-acc-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #005daa;
}

.fs-chevron {
  flex: 0 0 auto;
  color: #1f2933;
  transition: transform 0.2s ease;
}

.fs-acc-row.open .fs-chevron {
  transform: rotate(180deg);
}

.fs-acc-head-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.fs-acc-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: #eaf1fa;
  color: #005daa;
  font-weight: 700;
  font-size: 0.9rem;
}

.fs-acc-body {
  padding: 4px 20px 20px;
  color: #555555;
  font-size: 0.95rem;
  line-height: 1.6;
}
.fs-acc-body p {
  margin: 0;
}
.fs-acc-body .fs-acc-band-label {
  color: #1f2933;
  font-weight: 700;
  margin-bottom: 4px;
}

.fs-report-row .fs-acc-head {
  background: #eaf1fa;
}

.fs-report-row.open .fs-acc-head {
  border-bottom: 1px solid #d6e2f2;
}

.fs-faq {
  border: 1px solid #e4e7ec;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 8px;
}

.fs-faq-row {
  border: none;
  border-bottom: 1px solid #e4e7ec;
  border-radius: 0;
  margin-bottom: 0;
}
.fs-faq-row:last-child {
  border-bottom: none;
}

.fs-faq-q {
  font-size: 1.15rem;
}

.fs-learn-more {
  display: inline-block;
  margin-top: 14px;
  color: #1f2933;
  text-decoration: underline;
  font-weight: 600;
}
.fs-learn-more:hover {
  color: #005daa;
}

.fs-member-line {
  text-align: center;
  margin: 4px 0 28px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1f2933;
}
.fs-member-line .fs-join-arrow {
  margin-right: 8px;
  color: #1f2933;
}
.fs-member-line .fs-join-link {
  color: #005daa;
  text-decoration: underline;
}

.fs-cta-buttons {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 28px 0 12px;
}

.fs-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background-color: #005daa;
  color: #ffffff;
  font-family: "Lato", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 32px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
  flex: 1 1 0;
  max-width: 320px;
  text-decoration: none;
}
.fs-cta-btn:hover:not(:disabled) {
  background-color: #003c72;
}
.fs-cta-btn:disabled {
  background-color: #a9d4a5;
  cursor: not-allowed;
}
.fs-cta-btn.fs-cta-survey {
  background-color: #49a942;
}
.fs-cta-btn.fs-cta-survey:hover {
  background-color: #3d8f37;
}
.fs-cta-btn.fs-cta-feedback {
  background-color: #005daa;
}
.fs-cta-btn.fs-cta-feedback:hover {
  background-color: #003c72;
}

.fs-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 24, 48, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 2000;
}

.fs-modal {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 48px 44px 36px;
  text-align: center;
}

.fs-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: #005daa;
  cursor: pointer;
  padding: 6px;
  line-height: 0;
}
.fs-modal-close:hover {
  color: #003c72;
}

.fs-modal-title {
  font-size: 2rem;
  font-weight: 900;
  color: #1f2933;
  margin: 0 0 16px;
  line-height: 1.15;
}

.fs-modal-sub {
  color: #555555;
  font-size: 1.05rem;
  margin: 0 0 24px;
}

.fs-modal p {
  color: #555555;
  margin: 0 0 16px;
}

.fs-modal-field {
  margin: 8px 0 24px;
}

.fs-modal-input {
  width: 100%;
  border: 1.5px solid #9aa0a6;
  border-radius: 999px;
  padding: 16px 24px;
  font-family: "Lato", Arial, sans-serif;
  font-size: 1.05rem;
  color: #1f2933;
  outline: none;
}
.fs-modal-input:focus {
  border-color: #005daa;
}
.fs-modal-input::placeholder {
  color: #9aa0a6;
}

.fs-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.fs-modal-actions.center {
  justify-content: center;
}

.fs-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background-color: #49a942;
  color: #ffffff;
  font-family: "Lato", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 32px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}
.fs-btn-primary:hover:not(:disabled) {
  background-color: #3d8f37;
}
.fs-btn-primary:disabled {
  background-color: #a9d4a5;
  cursor: not-allowed;
}

.fs-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background-color: #6c757d;
  color: #ffffff;
  font-family: "Lato", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 32px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}
.fs-btn-secondary:hover:not(:disabled) {
  background-color: #5a6268;
}
.fs-btn-secondary:disabled {
  background-color: #a9d4a5;
  cursor: not-allowed;
}
.fs-btn-secondary:disabled {
  background-color: #c6c8ca;
}

.fs-modal-foot {
  margin-top: 20px;
  font-size: 0.95rem;
  color: #555555;
}
.fs-modal-foot a {
  color: #005daa;
  text-decoration: underline;
}
.fs-modal-foot.strong {
  font-weight: 700;
  color: #1f2933;
}

.fs-footer {
  text-align: center;
  margin-top: 40px;
}
.fs-footer .fs-footer-help {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  padding: 24px 0;
}
.fs-footer .fs-footer-help a {
  color: #ffffff;
  text-decoration: underline;
}
.fs-footer .fs-footer-address {
  background-color: rgb(56, 57, 59);
  color: #ffffff;
  padding: 28px 16px;
}
.fs-footer .fs-footer-address .address {
  margin: 0;
  line-height: 1.6;
}
.fs-footer .fs-footer-address .phone-number {
  color: #ffffff;
}

@media (max-width: 768px) {
  .fs-hero {
    padding: 40px 18px 90px;
  }
  .fs-hero-title {
    font-size: 2rem;
  }
  .fs-body {
    width: calc(100% - 24px);
    margin: -48px auto 32px;
    padding: 24px 18px 36px;
    border-radius: 20px;
  }
  .fs-result-card {
    padding: 22px 18px;
  }
  .fs-tabs {
    display: flex;
  }
  .fs-ring-divider {
    display: none;
  }
  .fs-rings {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .fs-ring-col {
    width: 100%;
    max-width: 340px;
  }
  .fs-rings.show-fit .fs-ring-col.opportunity {
    display: none;
  }
  .fs-rings.show-opportunity .fs-ring-col.fit {
    display: none;
  }
  .fs-modal {
    padding: 40px 24px 28px;
  }
  .fs-modal-title {
    font-size: 1.6rem;
  }
  .fs-modal-actions {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .fs-hero-title {
    font-size: 1.7rem;
  }
  .fs-search-pill {
    padding: 5px 5px 5px 16px;
  }
  .fs-search-input {
    padding: 10px 6px;
    font-size: 0.95rem;
  }
  .fs-search-btn {
    padding: 12px 18px;
    font-size: 0.9rem;
  }
}
