.fc-guide {
  --ink: #0b2447;
  --text: #334155;
  --muted: #64748b;
  --line: #d9e2ec;
  --soft: #f4f8fb;
  --green: #16a34a;
  --green-dark: #087a35;
  --blue: #edf6ff;
  --orange: #fff8e8;
  --amber: #c56a12;
  background: #fff;
  color: var(--text);
  font-size: 16px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}
.fc-guide *,
.fc-guide *:before,
.fc-guide *:after {
  box-sizing: border-box;
}
.fc-guide .cb-container {
  max-width: 1180px;
}
.fc-guide h1,
.fc-guide h2,
.fc-guide h3 {
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.18;
}
.fc-guide h1 {
  font-size: clamp(38px, 4.2vw, 54px);
  margin: 0 0 22px;
  overflow-wrap: normal;
}
.fc-guide h2 {
  font-size: clamp(28px, 3vw, 38px);
  margin: 0 0 16px;
}
.fc-guide h3 {
  font-size: 19px;
  margin: 0 0 10px;
}
.fc-guide a {
  color: var(--green-dark);
  font-weight: 700;
}
.fc-section {
  padding: 64px 0;
}
.fc-section--soft {
  background: var(--soft);
}
.fc-section--warning {
  background: var(--orange);
}
.fc-reading {
  max-width: 800px;
}
.fc-section-head {
  max-width: 800px;
  margin: 0 auto 32px;
  text-align: center;
}
.fc-section-head--left {
  margin-left: 0;
  text-align: left;
}
.fc-eyebrow {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.fc-hero {
  background: linear-gradient(118deg, #071b38 0%, #0b2f4e 62%, #0b4b3b 100%);
  color: #dbe7f2;
  padding: 58px 0 54px;
}
.fc-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(300px, 0.72fr);
  gap: 50px;
  align-items: center;
}
.fc-hero h1,
.fc-hero h2 {
  color: #fff;
}
.fc-hero .fc-eyebrow {
  color: #81e6a3;
}
.fc-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 30px;
}
.fc-breadcrumb a {
  color: #c7d7e7;
}
.fc-hero__lead {
  color: #fff;
  font-size: 20px;
  line-height: 1.62;
}
.fc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}
.fc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  text-decoration: none;
}
.fc-button--primary,
.fc-button--primary:hover {
  background: #27b553;
  color: #071b21;
}
.fc-button--ghost,
.fc-button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
}
.fc-hero__risk {
  color: #c7d7e7;
  font-size: 13px;
  font-weight: 700;
  margin: 20px 0 0;
}
.fc-hero-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  padding: 28px;
}
.fc-risk-strip {
  background: var(--orange);
  border-bottom: 1px solid #f1d59b;
  color: #704214;
  padding: 17px 0;
}
.fc-risk-strip .cb-container {
  display: flex;
  justify-content: center;
  gap: 12px 22px;
  text-align: center;
}
.fc-cross-list,
.fc-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fc-cross-list li,
.fc-check-list li {
  position: relative;
  padding: 8px 0 8px 31px;
}
.fc-cross-list li:before {
  content: "×";
  position: absolute;
  left: 0;
  top: 4px;
  color: #b45309;
  font-size: 21px;
  font-weight: 900;
}
.fc-hero .fc-cross-list li:before {
  color: #7de29a;
}
.fc-check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
}
.fc-cross-list--two,
.fc-check-list--two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px 36px;
}
.fc-alert-panel,
.fc-info-panel,
.fc-legit-panel,
.fc-public-warning,
.fc-high-risk,
.fc-combo,
.fc-virtual {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
}
.fc-alert-panel,
.fc-high-risk,
.fc-combo,
.fc-public-warning {
  background: var(--orange);
  border-left: 5px solid var(--amber);
}
.fc-info-panel,
.fc-legit-panel,
.fc-virtual {
  background: var(--blue);
  border-left: 5px solid #2786c7;
}
.fc-card-grid,
.fc-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.fc-card-grid article,
.fc-related-grid article,
.fc-warning-grid article,
.fc-emergency-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  min-width: 0;
}
.fc-card-grid p,
.fc-related-grid p {
  margin-bottom: 0;
}
.fc-related-grid article {
  display: flex;
  flex-direction: column;
}
.fc-related-grid a {
  margin-top: auto;
  padding-top: 16px;
  text-decoration: none;
}
.fc-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.fc-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: #fff;
}
.fc-table th,
.fc-table td {
  border: 1px solid var(--line);
  padding: 15px 17px;
  text-align: left;
  vertical-align: top;
}
.fc-table th {
  background: var(--ink);
  color: #fff;
  font-size: 14px;
}
.fc-table tbody tr:nth-child(even) {
  background: #f8fafc;
}
.fc-high-risk,
.fc-combo,
.fc-public-warning {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
}
.fc-note {
  margin-top: 24px;
  padding: 17px 20px;
  border-radius: 6px;
}
.fc-note--info {
  background: var(--blue);
  border-left: 4px solid #2786c7;
}
.fc-note--warning {
  background: var(--orange);
  border-left: 4px solid var(--amber);
}
.fc-steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  list-style: none;
  padding: 0;
}
.fc-steps li {
  counter-increment: step;
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 19px 18px 19px 58px;
}
.fc-steps li:before {
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 17px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}
.fc-compare,
.fc-warning-grid,
.fc-emergency-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.fc-compare article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}
.fc-compare__safe {
  background: #eaf8ef;
  border-left: 4px solid var(--green) !important;
}
.fc-compare__risk {
  background: var(--orange);
  border-left: 4px solid var(--amber) !important;
}
.fc-warning-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.fc-warning-grid article {
  border-left: 4px solid var(--amber);
}
.fc-emergency-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.fc-public-warning {
  align-items: start;
}
.fc-faq {
  max-width: 900px;
  margin: 0 auto;
}
.fc-faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-bottom: 10px;
}
.fc-faq__item summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  min-height: 52px;
  padding: 15px 54px 15px 18px;
  color: var(--ink);
  font-weight: 800;
}
.fc-faq__item summary::-webkit-details-marker {
  display: none;
}
.fc-faq__item summary span:before,
.fc-faq__item summary span:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 25px;
  width: 14px;
  height: 2px;
  background: var(--green-dark);
}
.fc-faq__item summary span:after {
  transform: rotate(90deg);
}
.fc-faq__item[open] summary span:after {
  transform: rotate(0);
}
.fc-faq__item p {
  border-top: 1px solid var(--line);
  margin: 0;
  padding: 17px 18px 20px;
}
.fc-final {
  background: #082344;
  color: #d6e2ed;
}
.fc-final h2 {
  color: #fff;
}
.fc-final__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 42px;
  align-items: center;
}
.fc-final__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 230px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  text-align: center;
}
.fc-final__badge strong {
  color: #7de29a;
  font-size: 36px;
}
.fc-final__badge span {
  color: #fff;
  font-weight: 800;
}
.fc-final__badge small {
  color: #b9cad8;
}
@media (max-width: 900px) {
  .fc-hero__grid,
  .fc-high-risk,
  .fc-combo,
  .fc-public-warning,
  .fc-final__grid {
    grid-template-columns: 1fr;
  }
  .fc-card-grid,
  .fc-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .fc-warning-grid,
  .fc-emergency-grid {
    grid-template-columns: 1fr;
  }
  .fc-final__badge {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .fc-section {
    padding: 46px 0;
  }
  .fc-hero {
    padding: 34px 0 42px;
  }
  .fc-hero__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .fc-guide h1 {
    font-size: 34px;
  }
  .fc-hero__lead {
    font-size: 18px;
  }
  .fc-actions,
  .fc-risk-strip .cb-container {
    flex-direction: column;
  }
  .fc-button {
    width: 100%;
  }
  .fc-cross-list--two,
  .fc-check-list--two,
  .fc-card-grid,
  .fc-related-grid,
  .fc-steps,
  .fc-compare {
    grid-template-columns: 1fr;
  }
  .fc-hero-card,
  .fc-alert-panel,
  .fc-info-panel,
  .fc-legit-panel,
  .fc-public-warning,
  .fc-high-risk,
  .fc-combo,
  .fc-virtual {
    padding: 22px;
  }
  .fc-section-head {
    text-align: left;
    margin-bottom: 26px;
  }
  .fc-table {
    min-width: 640px;
  }
}
