@charset "UTF-8";
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 *= require_tree .
 *= require_self
 */
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.fsa-navbar {
  background: #fff;
  padding: 0.75rem 2rem;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fsa-menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.fsa-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: background 0.2s;
}
.fsa-menu-toggle:hover span {
  background: #3a6b35;
}

.fsa-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 280px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  z-index: 1050;
  transition: right 0.3s ease;
  padding: 1.5rem 0;
}
.fsa-drawer.open {
  right: 0;
}

.fsa-drawer-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: #555;
  cursor: pointer;
  padding: 0 1.5rem 1rem;
  display: block;
}
.fsa-drawer-close:hover {
  color: #111;
}

.fsa-drawer-nav {
  display: flex;
  flex-direction: column;
}

.fsa-drawer-item {
  padding: 1rem 1.5rem;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid #f0f0f0;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.fsa-drawer-item:hover {
  background: #f7faf7;
  color: #3a6b35;
}
.fsa-drawer-item--blank {
  color: transparent;
  cursor: default;
  pointer-events: none;
}
.fsa-drawer-item--profile {
  font-weight: 600;
}

.fsa-drawer-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #3a6b35;
}

.fsa-drawer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1a2e1a;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fsa-navbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.fsa-avatar-wrap {
  position: relative;
}

.fsa-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1a2e1a;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
}
.fsa-avatar:hover {
  background: #3a6b35;
}

.fsa-profile-popup {
  display: none;
  position: absolute;
  right: 0;
  top: 48px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  z-index: 1060;
  min-width: 160px;
  overflow: hidden;
}
.fsa-profile-popup.open {
  display: block;
}

.fsa-profile-popup-item {
  display: block;
  padding: 0.75rem 1.1rem;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid #f0f0f0;
}
.fsa-profile-popup-item:last-child {
  border-bottom: none;
}
.fsa-profile-popup-item:hover {
  background: #f7faf7;
  color: #3a6b35;
}
.fsa-profile-popup-item--signout {
  color: #c0392b;
}
.fsa-profile-popup-item--signout:hover {
  background: #fff5f5;
  color: #c0392b;
}

.fsa-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.fsa-drawer-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.fsa-hero {
  background: #0b1f0e;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  color: #fff;
}
.fsa-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  max-width: 700px;
}
.fsa-hero .fsa-hero-btn {
  background: #3a6b35;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.fsa-hero .fsa-hero-btn:hover {
  background: #2f5929;
  color: #fff;
}
.fsa-hero .fsa-hero-sub {
  color: #a8c5a0;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.fsa-hero .fsa-hero-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1.5rem 3rem;
  margin-top: 1rem;
}
.fsa-hero .fsa-hero-card .fsa-hero-card-label {
  color: #a8c5a0;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.fsa-hero .fsa-hero-card .fsa-hero-card-value {
  font-size: 2rem;
  font-weight: 700;
}

body.fsa-advisor-page {
  overflow: hidden;
}
body.fsa-advisor-page > .container {
  display: none;
}

.fsa-adv-wrap {
  --adv-bg: #0a0a08;
  --adv-surface: #111110;
  --adv-border: #222220;
  --adv-accent: #c9f264;
  --adv-accent-dim: #8aaa3a;
  --adv-text: #e8e6df;
  --adv-dim: #6b6960;
  --adv-user-bg: #1a1f10;
  --adv-ai-bg: #131312;
  display: flex;
  height: calc(100vh - 73px);
  overflow: hidden;
  background: var(--adv-bg);
  color: var(--adv-text);
  font-family: "DM Mono", monospace;
  position: relative;
}
.fsa-adv-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(201, 242, 100, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(201, 242, 100, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.fsa-adv-sidebar {
  width: 220px;
  flex-shrink: 0;
  border-right: 1px solid var(--adv-border);
  display: flex;
  flex-direction: column;
  background: var(--adv-surface);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.fsa-adv-sidebar-header {
  padding: 14px;
  border-bottom: 1px solid var(--adv-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.fsa-adv-sidebar-header span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--adv-dim);
}

#fsaNewConvBtn {
  background: transparent;
  border: 1px solid var(--adv-border);
  color: var(--adv-accent);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  cursor: pointer;
  font-family: inherit;
}
#fsaNewConvBtn:hover {
  border-color: var(--adv-accent-dim);
}

#fsaConvList {
  flex: 1;
  overflow-y: auto;
  padding: 6px 0;
}
#fsaConvList::-webkit-scrollbar {
  width: 3px;
}
#fsaConvList::-webkit-scrollbar-thumb {
  background: var(--adv-border);
  border-radius: 2px;
}

.fsa-adv-conv-item {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  cursor: pointer;
  border-left: 2px solid transparent;
  gap: 8px;
  transition: background 0.15s, border-color 0.15s;
}
.fsa-adv-conv-item:hover {
  background: rgba(201, 242, 100, 0.04);
}
.fsa-adv-conv-item.active {
  border-left-color: var(--adv-accent);
  background: rgba(201, 242, 100, 0.06);
}

.fsa-adv-conv-info {
  flex: 1;
  min-width: 0;
}

.fsa-adv-conv-title {
  font-size: 12px;
  color: var(--adv-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fsa-adv-conv-item.active .fsa-adv-conv-title {
  color: var(--adv-accent);
}

.fsa-adv-conv-time {
  font-size: 10px;
  color: var(--adv-dim);
  margin-top: 3px;
}

.fsa-adv-conv-rename,
.fsa-adv-conv-delete {
  background: transparent;
  border: none;
  color: var(--adv-dim);
  cursor: pointer;
  padding: 3px;
  border-radius: 3px;
  opacity: 0;
  transition: opacity 0.15s, color 0.15s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.fsa-adv-conv-item:hover .fsa-adv-conv-rename,
.fsa-adv-conv-item:hover .fsa-adv-conv-delete {
  opacity: 1;
}

.fsa-adv-conv-rename:hover {
  color: var(--adv-accent);
}

.fsa-adv-conv-delete:hover {
  color: #ff6b6b;
}

.fsa-adv-rename-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--adv-accent-dim);
  color: var(--adv-text);
  font-family: inherit;
  font-size: 12px;
  outline: none;
  width: 100%;
  padding: 1px 0;
}

.fsa-adv-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.fsa-adv-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-bottom: 1px solid var(--adv-border);
  flex-shrink: 0;
}

.fsa-adv-topbar-title {
  font-size: 13px;
  color: var(--adv-text);
  letter-spacing: 0.02em;
  flex: 1;
}

.fsa-adv-mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--adv-dim);
  padding: 4px;
}

.fsa-adv-status {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--adv-accent);
  box-shadow: 0 0 8px var(--adv-accent);
  animation: fsaAdvPulse 2s infinite;
}
.fsa-adv-status.ended {
  background: var(--adv-dim);
  box-shadow: none;
  animation: none;
}

@keyframes fsaAdvPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
#fsaChatWindow {
  flex: 1;
  overflow-y: auto;
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  scroll-behavior: smooth;
}
#fsaChatWindow::-webkit-scrollbar {
  width: 4px;
}
#fsaChatWindow::-webkit-scrollbar-thumb {
  background: var(--adv-border);
  border-radius: 2px;
}

.fsa-adv-row {
  display: flex;
  padding: 6px 28px;
  gap: 14px;
  animation: fsaAdvFadeUp 0.25s ease forwards;
  opacity: 0;
}
.fsa-adv-row.history {
  animation: none;
  opacity: 1;
}
.fsa-adv-row.user {
  flex-direction: row-reverse;
}

@keyframes fsaAdvFadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fsa-adv-avatar {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 2px;
}
.fsa-adv-avatar.ai {
  background: var(--adv-accent);
  color: #0a0a08;
}
.fsa-adv-avatar.user {
  background: var(--adv-border);
  color: var(--adv-dim);
}

.fsa-adv-bubble {
  max-width: 68%;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 13.5px;
  line-height: 1.7;
  font-weight: 300;
  white-space: pre-wrap;
}
.fsa-adv-bubble.ai {
  background: var(--adv-ai-bg);
  border: 1px solid var(--adv-border);
  color: var(--adv-text);
  border-top-left-radius: 2px;
}
.fsa-adv-bubble.user {
  background: var(--adv-user-bg);
  border: 1px solid #2a3018;
  color: var(--adv-accent);
  border-top-right-radius: 2px;
}

.fsa-adv-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 4px 0;
}
.fsa-adv-typing span {
  width: 5px;
  height: 5px;
  background: var(--adv-dim);
  border-radius: 50%;
  animation: fsaAdvBounce 1.2s infinite;
}
.fsa-adv-typing span:nth-child(2) {
  animation-delay: 0.2s;
}
.fsa-adv-typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fsaAdvBounce {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  40% {
    transform: translateY(-5px);
    opacity: 1;
  }
}
.fsa-adv-system {
  text-align: center;
  font-size: 11px;
  color: var(--adv-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 28px 16px;
}
.fsa-adv-system::before, .fsa-adv-system::after {
  content: "—";
  margin: 0 8px;
  opacity: 0.3;
}
.fsa-adv-system.returning {
  color: var(--adv-accent-dim);
  padding-top: 20px;
}

.fsa-adv-error {
  text-align: center;
  font-size: 12px;
  color: #ff6b6b;
  padding: 20px 28px;
}

.fsa-adv-gate {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
}

.fsa-adv-gate-msg {
  color: var(--adv-dim);
  font-size: 13px;
  line-height: 1.7;
  max-width: 340px;
  margin: 0;
}

.fsa-adv-gate-btn {
  background: transparent;
  border: 1px solid var(--adv-border);
  color: var(--adv-dim);
  border-radius: 6px;
  padding: 10px 24px;
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: not-allowed;
  opacity: 0.5;
}

.fsa-adv-input-area {
  padding: 16px 28px 20px;
  border-top: 1px solid var(--adv-border);
  background: var(--adv-bg);
  display: flex;
  gap: 10px;
  align-items: flex-end;
  flex-shrink: 0;
}

#fsaMsgInput {
  flex: 1;
  background: var(--adv-surface);
  border: 1px solid var(--adv-border);
  color: var(--adv-text);
  font-family: inherit;
  font-size: 13px;
  font-weight: 300;
  padding: 11px 14px;
  border-radius: 6px;
  resize: none;
  outline: none;
  min-height: 44px;
  max-height: 120px;
  line-height: 1.5;
}
#fsaMsgInput:focus {
  border-color: var(--adv-accent-dim);
}
#fsaMsgInput::placeholder {
  color: var(--adv-dim);
}
#fsaMsgInput:disabled {
  opacity: 0.4;
}

#fsaSendBtn {
  background: var(--adv-accent);
  color: #0a0a08;
  border: none;
  border-radius: 6px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
#fsaSendBtn:hover {
  opacity: 0.85;
}
#fsaSendBtn:active {
  transform: scale(0.95);
}
#fsaSendBtn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

#fsaEndBtn {
  display: none;
  align-items: center;
  background: transparent;
  color: var(--adv-dim);
  border: 1px solid var(--adv-border);
  border-radius: 6px;
  padding: 0 14px;
  height: 44px;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  flex-shrink: 0;
}
#fsaEndBtn:hover {
  border-color: #ff6b6b;
  color: #ff6b6b;
}
#fsaEndBtn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.fsa-adv-ended-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 8, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  animation: fsaAdvFadeUp 0.3s ease forwards;
  opacity: 0;
}

.fsa-adv-ended-card {
  background: var(--adv-surface);
  border: 1px solid var(--adv-border);
  border-radius: 10px;
  padding: 40px 48px;
  text-align: center;
  max-width: 380px;
}
.fsa-adv-ended-card h2 {
  font-size: 22px;
  font-weight: 400;
  color: var(--adv-text);
  margin-bottom: 12px;
}
.fsa-adv-ended-card p {
  font-size: 13px;
  color: var(--adv-dim);
  line-height: 1.7;
  margin-bottom: 24px;
}

.fsa-adv-resume-btn {
  background: var(--adv-accent);
  color: #0a0a08;
  border: none;
  border-radius: 6px;
  padding: 10px 24px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}
.fsa-adv-resume-btn:hover {
  opacity: 0.85;
}

.fsa-adv-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 8, 0.6);
  z-index: 19;
}
.fsa-adv-backdrop.visible {
  display: block;
}

@media (max-width: 640px) {
  .fsa-adv-mobile-toggle {
    display: flex;
  }
  .fsa-adv-sidebar {
    position: fixed;
    inset: 73px auto 0 0;
    width: 80vw;
    max-width: 280px;
    z-index: 20;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
  }
  .fsa-adv-sidebar.open {
    transform: translateX(0);
  }
}
.fsa-overall-card {
  position: relative;
  overflow: hidden;
}

.fsa-overall-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0%;
  transition: width 1s ease, background 0.3s;
  border-radius: 0 2px 2px 0;
}

.fsa-scores-page {
  background: #0b1f0e;
  min-height: calc(100vh - 73px);
  padding: 3rem 2rem 4rem;
}

.fsa-scores-cta {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.25rem 1.75rem;
  max-width: 960px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fsa-scores-cta-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.fsa-scores-cta-text {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  margin: 0;
}

.fsa-scores-cta-btn {
  background: #3a6b35;
  color: #fff;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.fsa-scores-cta-btn:hover {
  background: #2f5929;
  color: #fff;
}

.fsa-scores-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.fsa-scores-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.fsa-scores-sub {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.fsa-key {
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.fsa-key--green {
  background: rgba(111, 207, 122, 0.15);
  color: #6fcf7a;
}
.fsa-key--yellow {
  background: rgba(230, 201, 122, 0.15);
  color: #e6c97a;
}
.fsa-key--red {
  background: rgba(232, 112, 112, 0.15);
  color: #e87070;
}

.fsa-scores-loading {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  padding: 4rem 0;
}

.fsa-scores-error {
  color: #e87070 !important;
}

.fsa-scores-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}
.fsa-scores-grid .fsa-score-card:nth-child(1) {
  grid-column: 1/7;
}
.fsa-scores-grid .fsa-score-card:nth-child(2) {
  grid-column: span 2;
}
.fsa-scores-grid .fsa-score-card:nth-child(3) {
  grid-column: span 2;
}
.fsa-scores-grid .fsa-score-card:nth-child(4) {
  grid-column: span 2;
}
.fsa-scores-grid .fsa-score-card:nth-child(5) {
  grid-column: 2/4;
}
.fsa-scores-grid .fsa-score-card:nth-child(6) {
  grid-column: 4/6;
}

.fsa-score-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.75rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 0.2s;
}
.fsa-score-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
}
.fsa-score-card--overall {
  grid-column: 1/-1;
  padding: 2.25rem 2rem 1.5rem;
}
.fsa-score-card--detail {
  background: rgba(255, 255, 255, 0.03);
}

.fsa-score-card-label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1rem;
}

.fsa-score-card-value {
  font-size: 2.6rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
  margin-bottom: 1.25rem;
  transition: color 0.4s;
}
.fsa-score-card--overall .fsa-score-card-value {
  font-size: 3.5rem;
}

.fsa-score-card-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.fsa-score-card-fill {
  height: 100%;
  width: 0%;
  border-radius: 4px;
  transition: width 1s ease, background 0.4s;
}

.fsa-footer {
  background: #080f09;
  padding: 3rem 2rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.fsa-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.fsa-footer-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.fsa-footer-links a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.85rem;
}
.fsa-footer-links a:hover {
  color: #fff;
}

.fsa-footer-copy {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.78rem;
  margin: 0;
}

.fsa-footer-disclaimer {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.78rem;
  line-height: 1.6;
  max-width: 720px;
  margin: 0;
}

.fsa-content {
  background: #f5f5f3;
  padding: 5rem 1.5rem;
  text-align: center;
}
.fsa-content .fsa-tag {
  display: inline-block;
  border: 1px solid #3a6b35;
  color: #3a6b35;
  border-radius: 50px;
  padding: 0.35rem 1.1rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.fsa-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
  max-width: 640px;
  margin: 0 auto 1rem;
  line-height: 1.2;
}
.fsa-content p {
  color: #555;
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

.fsa-landing-hero {
  background: #0b1f0e;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 5rem 2.5rem 4.5rem;
  color: #fff;
}

.fsa-landing-hero-left {
  flex: 1;
  max-width: 520px;
}

.fsa-landing-hero-left h1 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 1.1rem;
}

.fsa-landing-hero-sub {
  color: #a8c5a0;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 2rem;
  max-width: 440px;
}

.fsa-landing-hero-btns {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.fsa-landing-btn-primary {
  background: #fff;
  color: #0b1f0e;
  border: none;
  border-radius: 50px;
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.fsa-landing-btn-primary:hover {
  background: #e9e9e9;
  color: #0b1f0e;
}

.fsa-landing-hero-btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
}
.fsa-landing-hero-btn-group .fsa-cta-note {
  margin-top: 0;
}

.fsa-fomo {
  color: #a8dba0;
  font-weight: 600;
  font-size: 0.88rem;
  margin: 0 0 1.2rem;
}

.fsa-fomo-line {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #3a6b35;
  font-weight: 600;
}

.fsa-landing-btn-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.75);
  border-radius: 50px;
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  text-decoration: none;
}
.fsa-landing-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.fsa-landing-hero-right {
  flex-shrink: 0;
  width: 260px;
  max-width: 100%;
}

.fsa-landing-score-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
}

.fsa-landing-score-eyebrow {
  font-size: 0.69rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.25rem;
}

.fsa-landing-score-name {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  margin-bottom: 0.5rem;
}

.fsa-landing-score-val {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.fsa-landing-score-label {
  font-size: 0.69rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
}

.fsa-landing-score-bar-wrap {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.fsa-landing-score-bar-fill {
  height: 100%;
  border-radius: 3px;
  width: 0;
  transition: width 1s ease, background 0.3s;
}

.fsa-landing-subscore-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.81rem;
}
.fsa-landing-subscore-row:last-child {
  border-bottom: none;
}

.fsa-landing-subscore-name {
  color: rgba(255, 255, 255, 0.4);
}

.fsa-landing-subscore-val {
  font-weight: 600;
  font-size: 0.875rem;
}

.fsa-landing-subscore-bar {
  width: 48px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 0.5rem;
  flex-shrink: 0;
}

.fsa-landing-subscore-fill {
  height: 100%;
  border-radius: 3px;
}

.fsa-landing-score-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: #a8c5a0;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}
.fsa-landing-score-link:hover {
  color: #fff;
}

.fsa-landing-score-empty {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
  line-height: 1.6;
  margin: 0.5rem 0 1.1rem;
}

.fsa-landing-score-empty-btn {
  display: inline-flex;
  align-items: center;
  background: #3a6b35;
  color: #fff;
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}
.fsa-landing-score-empty-btn:hover {
  background: #2f5929;
  color: #fff;
}

.fsa-band {
  padding: 5.5rem 1.5rem;
}

.fsa-wrap {
  max-width: 1080px;
  margin: 0 auto;
}

.fsa-eyebrow {
  display: inline-block;
  border: 1px solid #3a6b35;
  color: #3a6b35;
  border-radius: 50px;
  padding: 0.35rem 1.1rem;
  font-size: 0.81rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.fsa-serif {
  font-family: "DM Serif Display", Georgia, serif;
  font-style: normal;
  color: #4a8c5c;
}

.fsa-landing-hero .fsa-serif,
.fsa-cta .fsa-serif {
  color: #6fcf7a;
}

.fsa-sec-h2 {
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.fsa-lede {
  font-size: 1.06rem;
  line-height: 1.7;
  max-width: 580px;
}

.fsa-measures {
  background: radial-gradient(120% 90% at 50% -10%, rgba(111, 207, 122, 0.1), transparent 60%), #0b1f0e;
  color: #fff;
  text-align: center;
}
.fsa-measures .fsa-eyebrow {
  color: #a8c5a0;
  border-color: rgba(58, 107, 53, 0.45);
}
.fsa-measures .fsa-lede {
  color: rgba(255, 255, 255, 0.62);
  margin: 0 auto;
}

.fsa-cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  text-align: left;
}

.fsa-cat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  padding: 1.5rem 1.35rem 1.6rem;
}
.fsa-cat-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0 0 0.7rem;
  color: #fff;
}

.fsa-cat-ico {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(111, 207, 122, 0.12);
  color: #6fcf7a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.fsa-cat-ico svg {
  width: 22px;
  height: 22px;
}

.fsa-cat-fact {
  font-size: 0.86rem;
  line-height: 1.55;
  color: #6fcf7a;
  font-weight: 600;
  margin: 0;
}

.fsa-how {
  background: #f5f5f3;
  text-align: center;
}
.fsa-how .fsa-eyebrow {
  color: #3a6b35;
}
.fsa-how .fsa-sec-h2 {
  color: #111;
}
.fsa-how .fsa-lede {
  color: #555;
  margin: 0 auto 3.2rem;
}

.fsa-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.fsa-step {
  position: relative;
  background: #fff;
  border: 1px solid #e6e6e2;
  border-radius: 16px;
  padding: 2.2rem 1.6rem 1.7rem;
}
.fsa-step-img {
  display: block;
  width: calc(100% + 3.2rem);
  height: 150px;
  object-fit: cover;
  margin: -2.2rem -1.6rem 1.2rem;
  border-radius: 16px 16px 0 0;
}
.fsa-step h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0 0 0.55rem;
  color: #111;
}
.fsa-step p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #555;
  margin: 0;
}
.fsa-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 2.7rem;
  right: -0.9rem;
  width: 1.1rem;
  height: 2px;
  background: #d3d3cd;
}

.fsa-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0b1f0e;
  color: #6fcf7a;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.fsa-cta {
  background: radial-gradient(90% 120% at 50% 120%, rgba(58, 107, 53, 0.35), transparent 60%), #080f09;
  color: #fff;
  text-align: center;
}
.fsa-cta .fsa-eyebrow {
  color: #a8c5a0;
  border-color: rgba(58, 107, 53, 0.45);
}
.fsa-cta .fsa-sec-h2 {
  color: #fff;
}
.fsa-cta .fsa-lede {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto 2.2rem;
}

.fsa-cta-note {
  margin-top: 1.1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.fsa-embed {
  background: #fff;
  text-align: center;
}
.fsa-embed .fsa-eyebrow {
  color: #3a6b35;
}
.fsa-embed .fsa-sec-h2 {
  color: #111;
}
.fsa-embed .fsa-lede {
  color: #555;
  margin: 0 auto 2.5rem;
}
.fsa-embed-wrap-outer {
  margin-top: 0.5rem;
}
.fsa-embed-frame-wrap {
  border: 1px solid #ddd;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  max-width: 960px;
  margin: 0 auto;
}
.fsa-embed-frame-wrap iframe {
  width: 100%;
  height: 720px;
  border: 0;
  display: block;
}

.fsa-idea {
  background: #f5f5f3;
  text-align: center;
}
.fsa-idea .fsa-eyebrow {
  color: #3a6b35;
}
.fsa-idea .fsa-sec-h2 {
  color: #111;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.fsa-idea .fsa-lede {
  color: #555;
  margin: 0 auto;
}

.fsa-idea-video {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 460px;
  margin: 1.75rem auto;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.fsa-contrast {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  text-align: left;
}

.fsa-contrast-card {
  border-radius: 16px;
  padding: 1.8rem 1.7rem;
  border: 1px solid #e6e6e2;
}
.fsa-contrast-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0.6rem 0 0;
}

.fsa-contrast-tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.fsa-contrast-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.6rem;
}
.fsa-contrast-header .fsa-contrast-tag {
  margin-bottom: 0;
}

.fsa-contrast-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}
.fsa-contrast-badge--bad {
  background: rgba(232, 112, 112, 0.12);
  color: #c0392b;
}
.fsa-contrast-badge--good {
  background: rgba(111, 207, 122, 0.15);
  color: #6fcf7a;
}

.fsa-contrast-line {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
}

.fsa-contrast-card--muted {
  background: #fff;
  border: 1.5px solid rgba(232, 112, 112, 0.5);
}
.fsa-contrast-card--muted .fsa-contrast-tag {
  color: #c0392b;
}
.fsa-contrast-card--muted .fsa-contrast-line {
  color: #333;
}
.fsa-contrast-card--muted p {
  color: #777;
}

.fsa-contrast-card--accent {
  background: #0b1f0e;
  border-color: #0b1f0e;
}
.fsa-contrast-card--accent .fsa-contrast-tag {
  color: #6fcf7a;
}
.fsa-contrast-card--accent .fsa-contrast-line {
  color: #fff;
}
.fsa-contrast-card--accent p {
  color: rgba(255, 255, 255, 0.62);
}

.fsa-founder {
  background: #080f09;
  color: #fff;
  text-align: center;
}
.fsa-founder .fsa-eyebrow {
  color: #a8c5a0;
  border-color: rgba(58, 107, 53, 0.45);
}
.fsa-founder .fsa-wrap {
  max-width: 780px;
}

.fsa-founder-quote {
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  margin: 0.5rem 0 2rem;
}

.fsa-founder-by {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.fsa-founder-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #3a6b35;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fsa-founder-meta {
  text-align: left;
}

.fsa-founder-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.fsa-founder-role {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .fsa-landing-hero {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
    min-height: unset;
  }
  .fsa-landing-hero-left {
    max-width: 520px;
  }
  .fsa-landing-hero-left h1 {
    font-size: 2rem;
  }
  .fsa-landing-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .fsa-landing-hero-btns {
    justify-content: center;
  }
}
@media (max-width: 880px) {
  .fsa-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fsa-cat-grid > *:last-child {
    grid-column: 1 / -1;
    max-width: 260px;
    margin: 0 auto;
  }
  .fsa-contrast {
    grid-template-columns: 1fr;
  }
  .fsa-steps {
    grid-template-columns: 1fr;
  }
  .fsa-step:not(:last-child)::after {
    display: none;
  }
  .fsa-embed-frame-wrap iframe {
    height: 640px;
  }
}
@media (max-width: 520px) {
  .fsa-cat-grid {
    grid-template-columns: 1fr;
  }
  .fsa-cat-grid > *:last-child {
    max-width: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fsa-landing-score-bar-fill {
    transition: none;
  }
}
