.ftfr-page {
  --ftfr-panel: #141416;
  --ftfr-panel-soft: #101012;
  --ftfr-line: rgba(255, 255, 255, .09);
  --ftfr-gold: #e8bd5f;
  --ftfr-red: #cf3a2d;
  --ftfr-green: #69ba83;
  width: 100%;
  color: #f7f4ee;
}

.ftfr-page * {
  box-sizing: border-box;
}

.ftfr-page h1,
.ftfr-page h2,
.ftfr-page h3 {
  color: #f7f4ee;
}

.ftfr-page p {
  color: #bbb7b0;
}

.ftfr-intro {
  max-width: 980px;
  padding: 34px 0 82px;
}

.ftfr-kicker {
  margin: 0 0 10px;
  color: var(--ftfr-gold) !important;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ftfr-intro h1 {
  max-width: 950px;
  margin: 0 0 22px;
  font-size: clamp(2.7rem, 6vw, 6.3rem);
  line-height: .98;
  letter-spacing: -.045em;
}

.ftfr-intro-copy {
  max-width: 760px;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.85;
}

.ftfr-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.ftfr-quick-links a {
  padding: 11px 15px;
  border: 1px solid var(--ftfr-line);
  border-radius: 999px;
  color: #f7f4ee;
  background: var(--ftfr-panel-soft);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .05em;
  text-decoration: none;
  transition:
    border-color .18s ease,
    color .18s ease,
    transform .18s ease;
}

.ftfr-quick-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 189, 95, .5);
  color: var(--ftfr-gold);
}

.ftfr-section {
  position: relative;
  padding: 110px 0 124px;
  border-top: 1px solid var(--ftfr-line);
  scroll-margin-top: 86px;
}

.ftfr-section + .ftfr-section {
  margin-top: 92px;
}

.ftfr-section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: min(290px, 36%);
  height: 1px;
  background:
    linear-gradient(90deg, var(--ftfr-red), var(--ftfr-gold), transparent);
}

.ftfr-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 42px;
}

.ftfr-section-heading h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -.035em;
}

.ftfr-section-heading > p {
  max-width: 520px;
  margin: 0;
  line-height: 1.75;
}

.ftfr-rule-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ftfr-rule-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--ftfr-line);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .02), transparent),
    var(--ftfr-panel);
  transition:
    transform .18s ease,
    border-color .18s ease,
    background-color .18s ease;
}

.ftfr-rule-card:hover {
  transform: translateY(-3px);
  border-color: rgba(207, 58, 45, .42);
}

.ftfr-rule-number {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(207, 58, 45, .32);
  border-radius: 9px;
  color: #ff8a7b;
  background: rgba(207, 58, 45, .09);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.ftfr-rule-card h3 {
  margin: 2px 0 9px;
  font-size: 1.18rem;
}

.ftfr-rule-card p {
  margin: 0;
  line-height: 1.7;
}

.ftfr-permitted-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ftfr-permitted-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--ftfr-line);
  border-radius: 10px;
  background:
    radial-gradient(circle at 100% 0%, rgba(105, 186, 131, .09), transparent 42%),
    var(--ftfr-panel);
}

.ftfr-permitted-card > span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--ftfr-green);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.ftfr-permitted-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.ftfr-permitted-card p {
  margin: 0;
  line-height: 1.7;
}

.ftfr-report-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, .7fr);
  align-items: stretch;
  gap: 22px;
}

.ftfr-report-steps {
  display: grid;
  gap: 14px;
}

.ftfr-report-steps article {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 20px;
  padding: 25px 28px;
  border: 1px solid var(--ftfr-line);
  border-radius: 10px;
  background: var(--ftfr-panel);
}

.ftfr-report-steps article > span {
  color: var(--ftfr-gold);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.ftfr-report-steps h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.ftfr-report-steps p {
  margin: 0;
  line-height: 1.7;
}

.ftfr-report-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border: 1px solid rgba(232, 189, 95, .34);
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(207, 58, 45, .13), transparent 42%),
    #151517;
}

.ftfr-report-card h3 {
  margin: 2px 0 13px;
  font-size: 1.65rem;
}

.ftfr-report-card p:not(.ftfr-kicker) {
  margin: 0 0 26px;
  line-height: 1.75;
}

.ftfr-report-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 18px;
  border: 1px solid #e4b759;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(180deg, #bd352a, #8f211c);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.ftfr-staff-notice {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: 50px;
  margin-top: 108px;
  padding: clamp(32px, 5vw, 54px);
  border: 1px solid rgba(232, 189, 95, .34);
  border-radius: 12px;
  background:
    linear-gradient(110deg, rgba(207, 58, 45, .1), transparent 38%),
    var(--ftfr-panel);
}

.ftfr-staff-notice h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
}

.ftfr-staff-notice > p {
  margin: 0;
  line-height: 1.8;
}

.ftfr-closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 50px;
  padding: 28px 0 8px;
  border-top: 1px solid var(--ftfr-line);
}

.ftfr-closing strong {
  color: #f7f4ee;
}

.ftfr-closing span {
  color: var(--ftfr-gold);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

@media (max-width: 1000px) {
  .ftfr-section-heading,
  .ftfr-report-layout,
  .ftfr-staff-notice {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ftfr-permitted-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .ftfr-intro {
    padding-bottom: 62px;
  }

  .ftfr-section {
    padding: 78px 0 90px;
  }

  .ftfr-section + .ftfr-section {
    margin-top: 62px;
  }

  .ftfr-rule-grid,
  .ftfr-permitted-grid {
    grid-template-columns: 1fr;
  }

  .ftfr-rule-card {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 15px;
    padding: 22px;
  }

  .ftfr-rule-number {
    width: 44px;
    height: 44px;
  }

  .ftfr-report-steps article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ftfr-closing {
    display: grid;
  }
}
